cycat-project-website/_sass/bootstrap/utilities/_background.scss

20 lines
403 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
// stylelint-disable declaration-no-important
@each $color, $value in $theme-colors {
2020-08-23 12:01:06 +02:00
@include bg-variant(".bg-#{$color}", $value, true);
2018-12-09 08:21:01 +01: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;
}