mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-21 10:11:50 +00:00
12 lines
184 B
SCSS
12 lines
184 B
SCSS
// Typography
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent} {
|
|
@include hover {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|
|
}
|