You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
340 B
SCSS
24 lines
340 B
SCSS
.alert{
|
|
width: 100%;
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
}
|
|
.alert--notification{
|
|
@extend .alert;
|
|
background-color: $notification;
|
|
}
|
|
.alert--success{
|
|
@extend .alert;
|
|
background-color: $success;
|
|
}
|
|
.alert--error{
|
|
@extend .alert;
|
|
background-color: $error;
|
|
color: $white;
|
|
}
|
|
.alert--alert{
|
|
@extend .alert;
|
|
background-color: $alert;
|
|
}
|
|
|