streams/vendor/twbs/bootstrap/scss/mixins/_badge.scss
2018-09-07 11:26:02 +02:00

12 lines
230 B
SCSS

@mixin badge-variant($bg) {
color: color-yiq($bg);
background-color: $bg;
&[href] {
@include hover-focus {
color: color-yiq($bg);
text-decoration: none;
background-color: darken($bg, 10%);
}
}
}