Files
2026-04-28 21:14:25 +03:00

20 lines
380 B
SCSS

//
// Text emphasis
// --------------------------------------------------
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
}
a#{$parent} {
&.link-effect::before {
background-color: $color;
}
@include hover-focus {
color: darken($color, 20%) !important;
}
}
}