19 lines
816 B
SCSS
Executable File
19 lines
816 B
SCSS
Executable File
@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss';
|
|
@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_mixins.scss';
|
|
|
|
// Contextual backgrounds
|
|
// For now we'll leave these alongside the text classes until v4 when we can
|
|
// safely shift things around (per SemVer rules).
|
|
.bg-primary {
|
|
// Given the contrast here, this is the only class to have its color inverted
|
|
// automatically.
|
|
color: #fff;
|
|
}
|
|
@include bg-variant('.bg-primary', $brand-primary);
|
|
@include bg-variant('.bg-success', $state-success-bg);
|
|
@include bg-variant('.bg-info', $state-info-bg);
|
|
@include bg-variant('.bg-warning', $state-warning-bg);
|
|
@include bg-variant('.bg-danger', $state-danger-bg);
|
|
|
|
@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_popovers.scss';
|