1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-29 23:09:05 +02:00
Files
bootstrap/scss/mixins/_label.scss
2015-01-22 11:37:37 -08:00

12 lines
167 B
SCSS

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