ensl.org/app/assets/stylesheets/components/_flashes.scss

35 lines
434 B
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Flash Messages
*/
.flash {
2014-04-06 14:14:03 +00:00
@include span-columns(12);
margin-bottom: em(20);
&.notice {
2014-04-06 14:14:03 +00:00
@include flash;
}
&.success {
2014-04-06 14:14:03 +00:00
@include flash($flash-success);
&:before {
content: "\f00c";
}
}
&.error {
2014-04-06 14:14:03 +00:00
@include flash($flash-error);
&:before {
content: "\f00d";
}
}
&.warning,
&.alert {
2014-04-06 14:14:03 +00:00
@include flash($flash-warning);
&:before {
content: "\f071";
}
}
}