refactor: reusable dialog management

This commit is contained in:
Carlos Valente
2025-06-22 11:23:45 +02:00
committed by Carlos Valente
parent e0f2830072
commit 3f3cef7d6f
15 changed files with 35 additions and 33 deletions
@@ -2,7 +2,7 @@
position: absolute;
top: 1rem;
right: 2rem;
z-index: 100;
z-index: $zindex-floating;
}
.contentWrapper {
@@ -92,7 +92,7 @@ $inner-padding: 1rem;
thead {
position: sticky;
top: 0;
z-index: 3;
z-index: $zindex-floating;
background-color: $gray-1350;
}
@@ -152,12 +152,12 @@ $inner-padding: 1rem;
.divider {
border-top: 1px solid $white-10;
margin: 1rem -2rem;
z-index: 999;
z-index: $zindex-floating;
}
.overlay {
position: absolute;
z-index: 10;
z-index: $zindex-backdrop;
width: 100%;
height: 100%;
backdrop-filter: blur(2px);
@@ -11,7 +11,7 @@
left: 0;
width: 100%;
margin: 0;
z-index: 5;
z-index: $zindex-floating;
padding-block: 0.25rem;
max-height: 200px;