Skip to content

Commit

Permalink
fix(webapp): do not cover sidebar with home page background
Browse files Browse the repository at this point in the history
Previously, the home page background blocked click events on the sidebar
because the `z-index` was too high. Now it should be better.
  • Loading branch information
JoosepAlviste committed Sep 24, 2023
1 parent f48b932 commit 8bbff2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/webapp/src/styles/theme.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8bbff2f

Please sign in to comment.