16 lines
270 B
SCSS
16 lines
270 B
SCSS
|
/* -------------------------------------
|
||
|
* Your CSS code for flash notices and alerts
|
||
|
* ------------------------------------- */
|
||
|
|
||
|
.alert {
|
||
|
margin: 0;
|
||
|
text-align: center;
|
||
|
color: white;
|
||
|
}
|
||
|
.alert-info {
|
||
|
background: $green;
|
||
|
}
|
||
|
.alert-warning {
|
||
|
background: $red;
|
||
|
}
|