9 lines
132 B
SCSS

@each $prop, $value in $theme-colors {
.badge.bg-#{$prop} {
background: $value;
}
}
.badge {
text-transform: uppercase;
}