mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2025-02-06 22:05:17 -05:00
13 lines
167 B
SCSS
13 lines
167 B
SCSS
![]() |
// Labels
|
||
|
|
||
|
@mixin label-variant($color) {
|
||
|
background-color: $color;
|
||
|
|
||
|
&[href] {
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
background-color: darken($color, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|