1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-10-02 08:18:06 +02:00
Files
bootstrap/scss/mixins/_badge.scss
2017-06-25 18:15:32 -07:00

13 lines
234 B
SCSS

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