mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
12 lines
208 B
SCSS
12 lines
208 B
SCSS
@mixin badge-variant($bg) {
|
|
color: color-yiq($bg);
|
|
background-color: $bg;
|
|
|
|
@at-root a#{&} {
|
|
@include hover-focus {
|
|
color: color-yiq($bg);
|
|
background-color: darken($bg, 10%);
|
|
}
|
|
}
|
|
}
|