mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-16 08:53:15 +00:00
13 lines
167 B
SCSS
Executable file
13 lines
167 B
SCSS
Executable file
// Labels
|
|
|
|
@mixin label-variant($color) {
|
|
background-color: $color;
|
|
|
|
&[href] {
|
|
&:hover,
|
|
&:focus {
|
|
background-color: darken($color, 10%);
|
|
}
|
|
}
|
|
}
|