From ef4ea4965327d2e94cd70a56bb9572f00219a29a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 23 Aug 2022 01:46:59 +0300 Subject: [PATCH] fix modals not having proper z index --- src/App.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.scss b/src/App.scss index ab1a656e..dec187af 100644 --- a/src/App.scss +++ b/src/App.scss @@ -141,6 +141,11 @@ nav { grid-area: sidebar; } +#modal { + position: absolute; + z-index: var(--ZI_modals); +} + .column.-scrollable { top: var(--navbar-height); position: sticky;