mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-05 23:46:20 +01:00
13 lines
184 B
SCSS
13 lines
184 B
SCSS
// Typography
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent} {
|
|
@include hover {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|
|
}
|