Commit 42189e91 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Fix alert background colors

parent fcae43c6
...@@ -8,19 +8,19 @@ ...@@ -8,19 +8,19 @@
.flash-notice { .flash-notice {
@extend .alert; @extend .alert;
@extend .alert-info; background-color: $blue-500;
margin: 0; margin: 0;
} }
.flash-warning { .flash-warning {
@extend .alert; @extend .alert;
@extend .alert-warning; background-color: $orange-500;
margin: 0; margin: 0;
} }
.flash-alert { .flash-alert {
@extend .alert; @extend .alert;
@extend .alert-danger; background-color: $red-500;
margin: 0; margin: 0;
.flash-text, .flash-text,
...@@ -42,14 +42,16 @@ ...@@ -42,14 +42,16 @@
.flash-success { .flash-success {
@extend .alert; @extend .alert;
@extend .alert-success; background-color: $green-500;
margin: 0; margin: 0;
} }
.flash-notice, .flash-notice,
.flash-alert, .flash-alert,
.flash-success { .flash-success,
.flash-warning {
border-radius: $border-radius-default; border-radius: $border-radius-default;
color: $white-light;
.container-fluid, .container-fluid,
.container-fluid.container-limited { .container-fluid.container-limited {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment