stackviz/app/styles/bootstrap/mixins/_text-emphasis.scss

13 lines
210 B
SCSS

// Typography
// [converter] $parent hack
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color;
}
a#{$parent}:hover,
a#{$parent}:focus {
color: darken($color, 10%);
}
}