2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00
Files
bootstrap/scss/mixins/_text-emphasis.scss
T
2015-01-22 11:37:37 -08:00

13 lines
184 B
SCSS

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