@@ -36,7 +36,7 @@ const PasswordChangePage = () => {
3636 return (
3737 < div className = "mt-20 flex min-h-screen flex-col items-center" >
3838 < h2 className = "text-36px-semibold" > 비밀번호 변경</ h2 >
39- < p className = "text-24px-medium text-black-70" > 변경하실 새로운 비밀번호를 설정해주세요 .</ p >
39+ < p className = "text-24px-medium text-black-70" > 변경하실 새로운 비밀번호를 설정해 주세요 .</ p >
4040
4141 < form onSubmit = { onSubmit } className = "mt-12 w-[432px] space-y-6" >
4242 { /* 현재 비밀번호 */ }
@@ -47,8 +47,8 @@ const PasswordChangePage = () => {
4747 < input
4848 id = "current"
4949 type = "password"
50- className = "border-black-30 text-24px-medium placeholder-black-30 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none"
51- placeholder = "현재 비밀번호를 입력해주세요 "
50+ className = "hover: border-main focus:ring-main border- black-30 text-24px-medium placeholder-black-30 mt-2 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none focus:ring-1 "
51+ placeholder = "현재 비밀번호를 입력해 주세요 "
5252 value = { currentPassword }
5353 onChange = { ( e ) => setCurrentPassword ( e . target . value ) }
5454 />
@@ -62,8 +62,8 @@ const PasswordChangePage = () => {
6262 < input
6363 id = "password"
6464 type = "password"
65- className = "border-black-30 text-24px-medium placeholder-black-30 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none"
66- placeholder = "새 비밀번호를 입력해주세요 "
65+ className = "hover: border-main focus:ring-main border- black-30 text-24px-medium placeholder-black-30 mt-2 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none focus:ring-1 "
66+ placeholder = "새 비밀번호를 입력해 주세요 "
6767 value = { newPassword }
6868 onChange = { ( e ) => setNewPassword ( e . target . value ) }
6969 />
@@ -77,8 +77,8 @@ const PasswordChangePage = () => {
7777 < input
7878 id = "confirm"
7979 type = "password"
80- className = "border-black-30 text-24px-medium placeholder-black-30 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none"
81- placeholder = "비밀번호를 다시 입력해주세요 "
80+ className = "hover: border-main focus:ring-main border- black-30 text-24px-medium placeholder-black-30 mt-2 h-[68px] w-full rounded-[8px] border px-3 py-2 outline-none focus:ring-1 "
81+ placeholder = "비밀번호를 다시 입력해 주세요 "
8282 value = { confirmPassword }
8383 onChange = { ( e ) => setConfirmPassword ( e . target . value ) }
8484 />
0 commit comments