Luke Tainton 906e557d65
🚀 RELEASE: 2020 Revamp
Signed-off-by: Luke Tainton <luke@tainton.uk>
2020-05-09 22:15:53 +01:00

17 lines
364 B
SCSS
Executable File

// stylelint-disable declaration-no-important
// Typography
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
}
@if $emphasized-link-hover-darken-percentage != 0 {
a#{$parent} {
@include hover-focus {
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
}
}
}
}