mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
31 lines
453 B
SCSS
31 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";
|
||
|
}
|
||
|
}
|
||
|
}
|