rfid/themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_background.scss
2021-10-01 14:32:43 +02:00

20 lines
397 B
SCSS
Executable file

// 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;
}