0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/scss/utilities/_background.scss

20 lines
397 B
SCSS
Raw Normal View History

2017-10-03 06:34:56 +03:00
// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
2017-10-03 06:34:56 +03:00
@include bg-variant(".bg-#{$color}", $value);
}
2017-06-30 14:46:06 -07: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;
}