mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04:00
13 lines
210 B
SCSS
13 lines
210 B
SCSS
// Typography
|
|
|
|
// [converter] $parent hack
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent}:hover,
|
|
a#{$parent}:focus {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|