Skip to content

Commit

Permalink
fix: z-index too low on the Modal
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Sonis <anthonysonis@gmail.com>
  • Loading branch information
tonysnowboardunderthebridge committed Sep 19, 2024
1 parent 16a52fb commit 8780504
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Modal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
background-color: rgba(0, 0, 0, 0.95);
}
.blur-absolute {
@apply absolute top-0 left-0 w-full h-full z-10 bg-rich-black/95;
@apply absolute top-0 left-0 w-full h-full z-20 bg-rich-black/95;
}
.blur-fixed {
@apply fixed top-0 left-0 w-screen h-full z-20 bg-rich-black/95 flex justify-center items-center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModalDirectional.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.blur {
@apply fixed top-0 left-0 w-full h-full z-10 bg-rich-black/95;
@apply fixed top-0 left-0 w-full h-full z-20 bg-rich-black/95;
}
.container {
@apply z-20 fixed top-0 -right-[100%] min-h-full h-full bg-rich-black border-solid border-white/30 border-l;
Expand Down

0 comments on commit 8780504

Please sign in to comment.