Skip to content
Snippets Groups Projects
Commit a131c2cf authored by Daniel Schultz's avatar Daniel Schultz :tm:
Browse files

Ensure errors are on top

In certain cases validation errors could be hidden by components that
were rendered "on top" (e.g. in the case of required rich text fields).

Providing a z-index signals that they belong on top.

Issue #2718
parent df4029a5
No related branches found
No related tags found
No related merge requests found
......@@ -415,6 +415,7 @@
margin: 20px 0 0;
color: $color--white;
background: $color--error;
z-index: 1;
@include media-query(tablet-landscape) {
position: absolute;
......
......@@ -389,6 +389,7 @@
margin: 20px 0 0;
color: $color--white;
background: $color--error;
z-index: 1;
@include media-query(tablet-landscape) {
position: absolute;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment