Files
SimpleWebConf.github.io/sass/bootstrap/mixins/_labels.scss
Alex Korzhikov bf510f2ee3 initial commit
2021-02-14 17:00:38 +01:00

13 lines
167 B
SCSS

// Labels
@mixin label-variant($color) {
background-color: $color;
&[href] {
&:hover,
&:focus {
background-color: darken($color, 10%);
}
}
}