mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-07 14:40:57 +00:00
10 lines
161 B
SCSS
10 lines
161 B
SCSS
// Typography
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent}:hover {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|