mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-19 10:09:14 +00:00
13 lines
210 B
SCSS
Executable file
13 lines
210 B
SCSS
Executable file
// Typography
|
|
|
|
// [converter] $parent hack
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent}:hover,
|
|
a#{$parent}:focus {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|