mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
30 lines
453 B
SCSS
30 lines
453 B
SCSS
/*
|
|
Flash Messages
|
|
*/
|
|
|
|
#flash {
|
|
@include span-columns(12);
|
|
margin-bottom: 20px;
|
|
#flash_notice {
|
|
@include flash;
|
|
}
|
|
#flash_success {
|
|
@include flash($flash-success);
|
|
&:before {
|
|
content: "\f00c";
|
|
}
|
|
}
|
|
#flash_error {
|
|
@include flash($flash-error);
|
|
&:before {
|
|
content: "\f00d";
|
|
}
|
|
}
|
|
#flash_warning,
|
|
#flash_alert {
|
|
@include flash($flash-warning);
|
|
&:before {
|
|
content: "\f071";
|
|
}
|
|
}
|
|
}
|