From 7f0ecaddb4e1b6c1fd9e0a955da39627cc1df622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Berg=C3=A9?= Date: Sat, 4 Jan 2025 18:13:41 +0100 Subject: [PATCH] fix(dialog): fix tooltip being displayed on top of dialog --- apps/frontend/src/ui/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/ui/Modal.tsx b/apps/frontend/src/ui/Modal.tsx index 7bb918d95..6b43969f0 100644 --- a/apps/frontend/src/ui/Modal.tsx +++ b/apps/frontend/src/ui/Modal.tsx @@ -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", );