Files
c-cms-legacy/public/assets/scss/bootstrap/utilities/_background.scss
Mathieu Lagace 771ed55f53 Initial commit
2018-06-27 19:54:27 -04:00

20 lines
397 B
SCSS
Vendored

// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
@include bg-variant(".bg-#{$color}", $value);
}
@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;
}