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 46eebd4255
3 changed files with 4 additions and 8 deletions

View File

@@ -19,9 +19,6 @@
<msfa-footer class="msfa__footer"></msfa-footer>
</div>
<div
*ngIf="(userLoading$ | async) || (rolesLoading$ | async)"
class="msfa__loading-wrapper msfa__loading-wrapper--full-screen"
>
<div class="msfa__loading-wrapper msfa__loading-wrapper--full-screen">
<digi-icon-spinner class="msfa__spinner"></digi-icon-spinner>
</div>

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 {