UNPKG

397 BSCSSView Raw
1// stylelint-disable declaration-no-important
2
3@each $color, $value in $theme-colors {
4 @include bg-variant(".bg-#{$color}", $value);
5}
6
7@if $enable-gradients {
8 @each $color, $value in $theme-colors {
9 @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
10 }
11}
12
13.bg-white {
14 background-color: $white !important;
15}
16
17.bg-transparent {
18 background-color: transparent !important;
19}