From 8bbff2f21428b09ae5a58e7af7c24667d6b14fd6 Mon Sep 17 00:00:00 2001 From: Joosep Alviste Date: Sun, 24 Sep 2023 20:48:08 +0300 Subject: [PATCH] fix(webapp): do not cover sidebar with home page background Previously, the home page background blocked click events on the sidebar because the `z-index` was too high. Now it should be better. --- apps/webapp/src/styles/theme.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/src/styles/theme.css.ts b/apps/webapp/src/styles/theme.css.ts index a650474e..4bfe660d 100644 --- a/apps/webapp/src/styles/theme.css.ts +++ b/apps/webapp/src/styles/theme.css.ts @@ -207,7 +207,7 @@ const below = -1 const zLayoutHeader = above + base const zLayoutToast = above + zLayoutHeader const zLayoutSelect = above + zLayoutHeader -const zHomePageBackground = below + base +const zHomePageBackground = below + below + base const zAuthLayoutSeparator = base const zSearchPopover = above + zLayoutHeader