_text-emphasis.scss 201 B

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