Skip to content

Commit

Permalink
Merge pull request #78 from abusix/pla-865-fix-wrong-z-indexes-in-portal
Browse files Browse the repository at this point in the history
Fix: Z-Indices Issues with Dialog / Updated CI Node Version
  • Loading branch information
Coderwelsch authored Dec 19, 2023
2 parents 212ae4d + f306dee commit 2b319de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "npm"
- run: npm ci
- run: npm run build
Expand Down
4 changes: 2 additions & 2 deletions src/components/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const Dialog = ({
leaveTo="opacity-0"
>
<div
className="fixed inset-0 bg-modal-background"
className="fixed inset-0 z-40 bg-modal-background"
aria-hidden="true"
onClick={() => handleClose(true)}
/>
Expand All @@ -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 2b319de

Please sign in to comment.