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