25 lines
360 B
SCSS
25 lines
360 B
SCSS
/* Background */
|
|
|
|
.bg-default {
|
|
background: $default-color !important;
|
|
}
|
|
|
|
.bg-primary {
|
|
background: $primary-color !important;
|
|
}
|
|
|
|
.bg-info {
|
|
background: $info-color !important;
|
|
}
|
|
|
|
.bg-success {
|
|
background: $success-color !important;
|
|
}
|
|
|
|
.bg-warning {
|
|
background: $warning-color !important;
|
|
}
|
|
|
|
.bg-danger {
|
|
background: $danger-color !important;
|
|
} |