mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 19:10:32 +00:00
15 lines
259 B
SCSS
15 lines
259 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
// Typography
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color !important;
|
|
}
|
|
a#{$parent} {
|
|
@include hover-focus {
|
|
color: darken($color, 10%) !important;
|
|
}
|
|
}
|
|
}
|