Fixed z-index issue when saving organization
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
@mixin msfa__backdrop() {
|
@mixin msfa__backdrop($zIndex: 0) {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 0;
|
z-index: $zIndex;
|
||||||
background-color: rgba(255, 255, 255, 0.4);
|
background-color: rgba(255, 255, 255, 0.4);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,10 +78,9 @@ dl {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
z-index: 1000;
|
|
||||||
|
|
||||||
&--full-screen {
|
&--full-screen {
|
||||||
@include msfa__backdrop;
|
@include msfa__backdrop(1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&__spinner {
|
&__spinner {
|
||||||
|
|||||||
Reference in New Issue
Block a user