_text-emphasis.scss 259 B

1234567891011121314
  1. // stylelint-disable declaration-no-important
  2. // Typography
  3. @mixin text-emphasis-variant($parent, $color) {
  4. #{$parent} {
  5. color: $color !important;
  6. }
  7. a#{$parent} {
  8. @include hover-focus {
  9. color: darken($color, 10%) !important;
  10. }
  11. }
  12. }