22 lines
354 B
SCSS
Vendored
22 lines
354 B
SCSS
Vendored
.alert-box {
|
|
border: 1px solid $medium;
|
|
color: $medium;
|
|
font-weight: bold;
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
.alert-success {
|
|
@extend .alert-box;
|
|
border-color: $success;
|
|
background-color: $success;
|
|
color: $white;
|
|
}
|
|
|
|
.alert-error {
|
|
@extend .alert-box;
|
|
border-color: $error;
|
|
background-color: $error;
|
|
color: $white;
|
|
}
|