Files

13 lines
210 B
SCSS
Raw Permalink Normal View History

2026-02-14 02:36:56 -05:00
// Typography
// [converter] $parent hack
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color;
}
a#{$parent}:hover,
a#{$parent}:focus {
color: darken($color, 10%);
}
}