13 lines
272 B
SCSS
13 lines
272 B
SCSS
@mixin badge-variant($bg) {
|
|
color: saturate(darken($bg, 10%), 10);
|
|
background-color: lighten($bg, 32%);
|
|
|
|
&[href] {
|
|
@include hover-focus {
|
|
color: color-yiq($bg);
|
|
text-decoration: none;
|
|
background-color: darken($bg, 12%);
|
|
}
|
|
}
|
|
}
|