12 lines
No EOL
317 B
SCSS
12 lines
No EOL
317 B
SCSS
// Color overrides for https://getbootstrap.com/docs/4.0/components/alerts
|
|
$alert-types: info, success, warning, danger;
|
|
|
|
.alert {
|
|
@each $alert-type in $alert-types {
|
|
&.alert-#{$alert-type} {
|
|
color: var(--alert-text-#{$alert-type});
|
|
background-color: var(--alert-bg-#{$alert-type});
|
|
border: none;
|
|
}
|
|
}
|
|
} |