1
0
mirror of https://github.com/loviuz/wifi-probe-aggregator.git synced 2025-02-11 08:50:48 +01:00

20 lines
409 B
SCSS
Raw Normal View History

2020-07-27 21:55:48 +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;
}