mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
13 lines
212 B
SCSS
13 lines
212 B
SCSS
// Typography
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color !important;
|
|
}
|
|
a#{$parent} {
|
|
@include hover-focus {
|
|
color: darken($color, 10%) !important;
|
|
}
|
|
}
|
|
}
|