Merge "SystemUserRolesException.java-junits"
[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 }