Skip to content

Commit

Permalink
fix: add z-50 to fix z-index problem with other elements
Browse files Browse the repository at this point in the history
  • Loading branch information
coderwelsch committed Dec 18, 2023
1 parent 001592e commit d762727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const Dialog = ({

<div
className={classNames(
`fixed inset-0 flex overflow-y-auto p-8`,
`fixed inset-0 z-50 flex overflow-y-auto p-8`,
position === "bottom-right" && "items-end justify-end",
position === "center" && "items-center justify-center"
)}
Expand Down

0 comments on commit d762727

Please sign in to comment.