Fixed z-index issue when saving organization

This commit is contained in:
Erik Tiekstra
2021-09-13 12:06:29 +02:00
parent 4895ae3cb9
commit c64befdf6e
2 changed files with 3 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
@mixin msfa__backdrop() {
@mixin msfa__backdrop($zIndex: 0) {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
z-index: $zIndex;
background-color: rgba(255, 255, 255, 0.4);
}

View File

@@ -78,10 +78,9 @@ dl {
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
&--full-screen {
@include msfa__backdrop;
@include msfa__backdrop(1000);
}
}
&__spinner {