Skip to content

Commit e9417ba

Browse files
committed
fix : Modal Z-index 수정
- Modal Z-index를 최상위로 수정하여 버튼이 Modal 위로 올라오는 현상 수정
1 parent 7438d77 commit e9417ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/landing/LandingLinkModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const LandingLinkModal = ({ close }: { close: () => void }) => {
1010

1111
return (
1212
<div
13-
className="top-0 left-0 absolute w-screen h-screen flex justify-center items-center bg-black bg-opacity-30"
13+
className="top-0 left-0 absolute w-screen h-screen flex justify-center items-center bg-black bg-opacity-30 z-50"
1414
onClick={handleCloseClick}
1515
>
1616
<div className="w-[40.625rem] bg-white flex flex-col p-9 gap-9 rounded-lg shadow-box">

0 commit comments

Comments
 (0)