LikeButtons.module.scss 501 B

1234567891011121314151617
  1. @use '~/styles/bootstrap/init' as bs;
  2. .btn-like {
  3. :global {
  4. box-shadow: none !important;
  5. }
  6. &:global {
  7. @include bs.button-outline-variant(rgba(bs.$secondary, 50%), lighten(bs.$red, 15%), rgba(lighten(bs.$red, 10%), 0.15), rgba(lighten(bs.$red, 10%), 0.5));
  8. &:not(:disabled):not(.disabled):active,
  9. &:not(:disabled):not(.disabled).active {
  10. color: lighten(bs.$red, 15%);
  11. }
  12. &:not(:disabled):not(.disabled):not(:hover) {
  13. background-color: transparent;
  14. }
  15. }
  16. }