jobportal/static/scss/bootstrap/mixins/_badge.scss
2020-12-21 19:53:38 +01:00

13 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%);
}
}
}