Skip to content

Commit

Permalink
fix(dialog): fix tooltip being displayed on top of dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Jan 4, 2025
1 parent 4f7c36c commit 7f0ecad
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 7f0ecad

Please sign in to comment.