Skip to content

Commit

Permalink
Merge pull request #1512 from argos-ci/fix-dialog-z-index
Browse files Browse the repository at this point in the history
fix(dialog): fix tooltip being displayed on top of dialog
  • Loading branch information
gregberge authored Jan 5, 2025
2 parents bf2c010 + 7f0ecad commit 99c00f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/ui/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {

const overlayStyles = (props: ModalRenderProps) =>
clsx(
"fixed top-0 left-0 w-full h-[--visual-viewport-height] isolate z-20 bg-black/15 flex items-center justify-center p-4 text-center backdrop-blur-lg",
"fixed top-0 left-0 w-full h-[--visual-viewport-height] isolate z-[900] bg-black/15 flex items-center justify-center p-4 text-center backdrop-blur-lg",
props.isEntering && "animate-in fade-in duration-200 ease-out",
props.isExiting && "animate-out fade-out duration-200 ease-in",
);
Expand Down

0 comments on commit 99c00f1

Please sign in to comment.