LikeButtons.module.scss 502 B

1234567891011121314151617
  1. @use '~/styles/bootstrap/init' as bs;
  2. .btn-group-like :global {
  3. .btn-like {
  4. box-shadow: none !important;
  5. @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));
  6. &:not(:disabled):not(.disabled):active,
  7. &:not(:disabled):not(.disabled).active {
  8. color: lighten(bs.$red, 15%);
  9. }
  10. &:not(:disabled):not(.disabled):not(:hover) {
  11. background-color: transparent;
  12. }
  13. }
  14. }