Skip to content

Commit

Permalink
fix(ui): dialog content z-index (#1757)
Browse files Browse the repository at this point in the history
* fix(ui): dialog content z-index

* chore: changeset
  • Loading branch information
VanishMax authored Sep 2, 2024
1 parent 4db5832 commit 516caf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tame-llamas-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@penumbra-zone/ui': patch
---

Fix z-index of dialog content
2 changes: 1 addition & 1 deletion packages/ui/src/Dialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const DialogContent = styled.div`
position: fixed;
inset: 0;
pointer-events: none;
z-index: auto;
z-index: 9999;
`;

const DialogContentCard = styled(motion.div)`
Expand Down

0 comments on commit 516caf3

Please sign in to comment.