From 62f2d156eb948de9f2c808afca615568fe430dc9 Mon Sep 17 00:00:00 2001 From: biast12 Date: Mon, 9 Mar 2026 17:18:18 +0100 Subject: [PATCH] Raise z-index for NotifyModal elements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increase z-index values in frontend/src/includes/NotifyModal.svelte so the modal and its backdrop sit above other UI layers. Updated modal container from 1001→2001 and backdrop from 1000→2000 to fix stacking/context conflicts that allowed other components to overlap the notification modal. --- frontend/src/includes/NotifyModal.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/includes/NotifyModal.svelte b/frontend/src/includes/NotifyModal.svelte index bf2c81e..98dd558 100644 --- a/frontend/src/includes/NotifyModal.svelte +++ b/frontend/src/includes/NotifyModal.svelte @@ -87,7 +87,7 @@ left: 0; width: 100%; height: 100%; - z-index: 1001; + z-index: 2001; display: flex; justify-content: center; @@ -105,7 +105,7 @@ left: 0; width: 100%; height: 100%; - z-index: 1000; + z-index: 2000; background-color: #000; opacity: .5; }