bootstrap-fluent-design_tem.../scss/_badges.scss

16 lines
325 B
SCSS
Raw Normal View History

2018-07-17 08:11:21 +01:00
.badge {
padding: .15em .3em .15em .3em;
border-radius: 0;
box-shadow: none;
min-height: 1rem;
font-weight: 400;
line-height: 1.2em;
text-transform: uppercase;
@each $key, $val in $fluent-colors {
&.badge-#{$key} {
background-color: $val;
color: set-notification-text-color($val);
}
}
}