From 7f6f9c11dbe7e3c47a0eddf823ddcedcec86b1ef Mon Sep 17 00:00:00 2001 From: muzam1l Date: Thu, 21 Jul 2022 16:44:33 +0530 Subject: [PATCH] Fix dialog z-index for safari. --- components/Dialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Dialog.tsx b/components/Dialog.tsx index 753b21a..7fffd24 100644 --- a/components/Dialog.tsx +++ b/components/Dialog.tsx @@ -15,7 +15,7 @@ const contentShow = keyframes({ "100%": { opacity: 1 }, }); const StyledOverlay = styled(DialogPrimitive.Overlay, { - zIndex: 9999, + zIndex: 10000, backgroundColor: blackA.blackA9, position: "fixed", inset: 0,