seitime-frappe/frappe/public/scss/common/alert.scss
2023-11-13 11:50:43 +05:30

12 lines
318 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;
}
}
}