Skip to content

Commit

Permalink
style: fix modal styling safari
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7u committed May 20, 2024
1 parent 140a17d commit 35d3c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/core/components/common-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ const CommonModal = ({ children, ...props }: Props) => {
overlay: {
backdropFilter: "blur(10px)",
backgroundColor: "rgba(0, 0, 0, 0.5)",
WebkitBackdropFilter: "blur(10px)",
},
}}
>
<div
className="relative min-h-[100vh] w-full overflow-auto px-[16px] pb-[40px] pt-[80px] md:min-h-[unset] md:rounded-[48px] md:p-[48px]"
className="relative z-10 min-h-[100vh] w-full overflow-auto px-[16px] pb-[40px] pt-[80px] shadow-[0px_0px_50px_0px_#FFFFFF40] md:min-h-[unset] md:rounded-[48px] md:p-[48px]"
style={{
boxShadow: "0px 0px 50px 0px #FFFFFF40",
boxSizing: "border-box",
display: "flex",
flexDirection: "column",
Expand Down

0 comments on commit 35d3c33

Please sign in to comment.