showcase/_sass/bootstrap/mixins/_badge.scss
2023-07-22 18:34:09 +01: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%);
}
}
}