2017-10-03 05:34:56 +02:00
|
|
|
// stylelint-disable declaration-no-important
|
|
|
|
|
2017-06-18 11:57:16 +02:00
|
|
|
@each $color, $value in $theme-colors {
|
2019-06-27 10:46:42 +02:00
|
|
|
@include bg-variant(".bg-#{$color}", $value, true);
|
2017-06-18 11:57:16 +02:00
|
|
|
}
|
2017-06-30 23:46:06 +02:00
|
|
|
|
2017-10-19 18:03:33 +02:00
|
|
|
@if $enable-gradients {
|
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
@include bg-gradient-variant(".bg-gradient-#{$color}", $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 07:18:24 +02:00
|
|
|
.bg-white {
|
|
|
|
background-color: $white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-transparent {
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|