ensl.org/app/assets/stylesheets/components/_flashes.scss
Luke Barratt 5487854a6c Start to cleanup old assets
Added new ISO country code flag icons to asset pipeline
Lots and lots of new style changes
Began converting to JS to coffeescript
2014-04-09 00:28:53 +01:00

34 lines
434 B
SCSS

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