mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08: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%);
|
|
}
|
|
}
|
|
}
|