bootstrap/scss/utilities/_background.scss

14 lines
256 B
SCSS
Raw Normal View History

2017-10-03 03:34:56 +00:00
// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
2017-10-03 03:34:56 +00:00
@include bg-variant(".bg-#{$color}", $value);
}
2017-06-30 21:46:06 +00:00
.bg-white {
background-color: $white !important;
}
.bg-transparent {
background-color: transparent !important;
}