8 lines
131 B
SCSS
8 lines
131 B
SCSS
|
.alert {
|
||
|
padding: 20px;
|
||
|
border-radius: 5px;
|
||
|
&.alert-success {
|
||
|
background-color: $accent-color-3;
|
||
|
color: $white;
|
||
|
}
|
||
|
}
|