mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-10 03:58:20 +00:00
15 lines
296 B
SCSS
15 lines
296 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, $emphasized-link-hover-darken-percentage) !important;
|
|
}
|
|
}
|
|
}
|