twbs--bootstrap/scss/utilities/_background.scss

20 lines
397 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
@if $enable-gradients {
@each $color, $value in $theme-colors {
@include bg-gradient-variant(".bg-gradient-#{$color}", $value);
}
}
.bg-white {
background-color: $white !important;
}
.bg-transparent {
background-color: transparent !important;
}