Merge changes I68af4999,I2fb38f2a,Ia11ca8d2,I36b83288,I129c127c, ...
[portal.git] / portal-FE-common / src / styles / bootstrap / mixins / _text-emphasis.scss
1 // stylelint-disable declaration-no-important
2
3 // Typography
4
5 @mixin text-emphasis-variant($parent, $color) {
6   #{$parent} {
7     color: $color !important;
8   }
9   a#{$parent} {
10     @include hover-focus {
11       color: darken($color, 10%) !important;
12     }
13   }
14 }