Commit a98305e0 by Brian Talbot

adding styling to control toggling appearance of step/submission-based error UI

parent db47b29a
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -467,6 +467,28 @@
}
// --------------------
// errors
// --------------------
// CASE: default error display (hidden)
.message--error {
@extend %trans-opacity;
display: none;
opacity: 0.0;
}
// CASE: error is shown
.has--error {
.message--error {
display: block;
opacity: 1.0;
}
}
// --------------------
// problem
......
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