mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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;
|
|
}
|
|
}
|
|
}
|