Skip to content

Commit ff1b875

Browse files
authored
fix: [티켓팅] 수령자 정보 모달 수정
건너뛰기 버튼 삭제, z-index 값 상승
2 parents bd23c98 + 8b4a051 commit ff1b875

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/modals/ticketing/UserInfoModal.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ const UserInfoModal: FC<UserInfoModalProps> = ({ onClose, onComplete, initialSt
4646

4747

4848
return (
49-
<div className="fixed inset-0 backdrop-blur-sm bg-black/50 flex items-center justify-center z-50 ">
49+
<div className="fixed inset-0 backdrop-blur-sm bg-black/50 flex items-center justify-center z-[110] ">
5050
<div className="bg-white rounded-2xl w-[80%] p-6 shadow-xl text-center relative max-w-[500px]">
5151
{/* STEP 1 - Intro */}
5252
{step === 1 && (
5353
<>
5454

55-
{/* 건너뛰기 버튼 */}
55+
{/* 건너뛰기 버튼
5656
<button
5757
className="absolute top-4 right-4 text-[10px] text-[#AEAEAE]"
5858
onClick={onClose}
5959
>
6060
건너뛰기 &gt;
61-
</button>
61+
</button>*/}
6262

6363
{/* 안내 텍스트 */}
6464
<p className="text-[#212121] font-medium text-[14px] leading-[17px] mt-[29px]">

0 commit comments

Comments
 (0)