Commit dc2f2350 by Brian Talbot

revising visual styling (color/alignment) of inline messages

parent ead5b179
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -119,19 +119,30 @@ ...@@ -119,19 +119,30 @@
border: none; border: none;
padding-bottom: 0; padding-bottom: 0;
color: $white-t; color: $white-t;
text-align: center;
} }
&.message--error { &.message--error {
background: tint($color-error, 15%); background: tint($color-error, 15%);
.message__content {
color: tint($color-error, 90%);
}
} }
&.message--warning { &.message--warning {
background: tint($color-warning, 15%); background: tint($color-warning, 15%);
.message__content {
color: tint($color-warning, 90%);
}
} }
&.message--confirm { &.message--confirm {
background: tint($color-warning, 15%); background: tint($color-confirm, 15%);
.message__content {
color: tint($color-confirm, 90%);
}
} }
} }
......
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