/glozzom/scss/bootstrap/utilities/_background.scss
https://bitbucket.org/Trulsh/personal-bootstrap-projects · Sass · 19 lines · 14 code · 4 blank · 1 comment · 0 complexity · e733cf333823bd71687f542c67e18d4d MD5 · raw 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;
- }