kiez-en-francais/themes/portio/assets/bootstrap-4.5.2/scss/utilities/_background.scss

20 lines
409 B
SCSS
Raw Permalink Normal View History

2022-06-22 21:28:26 +02:00
// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
@include bg-variant(".bg-#{$color}", $value, true);
}
@if $enable-gradients {
@each $color, $value in $theme-colors {
@include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
}
}
.bg-white {
background-color: $white !important;
}
.bg-transparent {
background-color: transparent !important;
}