LikeButtons.module.scss 450 B

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