website/_sass/bootstrap/scss/mixins/_text-emphasis.scss

13 lines
201 B
SCSS
Raw Normal View History

2016-06-26 16:37:52 +00:00
// Typography
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
}
a#{$parent} {
@include hover-focus {
color: darken($color, 10%);
}
}
}