mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-24 02:24:09 +03:00
18 lines
437 B
SCSS
18 lines
437 B
SCSS
.alert {
|
|
border: 0;
|
|
border-radius: 0;
|
|
|
|
// SASS conversion note: please mirror any content change in _mixins-shared.scss alert-variations-content
|
|
@include alert-variations(unquote(".alert"), unquote(""), $mdb-text-color-light);
|
|
|
|
&-info, &-danger, &-warning, &-success {
|
|
color: $mdb-text-color-light;
|
|
}
|
|
|
|
&-default {
|
|
a, .alert-link {
|
|
color: $mdb-text-color-primary;
|
|
}
|
|
}
|
|
}
|