forked from cryptohagen.dk/website
12 lines
167 B
SCSS
12 lines
167 B
SCSS
|
// Labels
|
||
|
|
||
|
@mixin label-variant($color) {
|
||
|
background-color: $color;
|
||
|
|
||
|
&[href] {
|
||
|
@include hover-focus {
|
||
|
background-color: darken($color, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|