Files
manja_dev_ui/Vue_Starter/scss/bootstrap/utilities/_background.scss
T
Łukasz Holeczek 923dc4ac3c - update: Bootstrap version to v4.0.0-beta.2
- update: vue-chartjs version to 3.0.0
- refactor: Remove old SCSS variables
- refactor: Breadcrumb Menu styles
- fix: External links issue
- fix: Mobile sidebar-nav height issue
2017-10-22 19:22:38 +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;
}