idfind 수정정
This commit is contained in:
@@ -49,9 +49,9 @@ export default function IdFindDone({
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-[60px]">
|
<div className="mt-[60px]">
|
||||||
<div className="bg-[#f9fafb] border border-neutral-40 rounded-[16px] py-[24px] min-h-[108px]">
|
<div className="bg-[#f9fafb] border border-neutral-40 rounded-[16px] py-[24px] min-h-[108px] flex items-center justify-center">
|
||||||
{userId && (
|
{userId && (
|
||||||
<p className="text-[18px] font-semibold text-neutral-700">
|
<p className="text-[18px] font-semibold text-neutral-700 text-center">
|
||||||
{userId}
|
{userId}
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
@@ -62,7 +62,7 @@ export default function IdFindDone({
|
|||||||
)} */}
|
)} */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-[24px] flex gap-3">
|
<div className="mt-[60px] flex gap-3">
|
||||||
<Link
|
<Link
|
||||||
href={secondaryHref}
|
href={secondaryHref}
|
||||||
className="h-[56px] flex-1 rounded-[12px] bg-[#f1f3f5] text-[18px] font-semibold text-basic-text flex items-center justify-center"
|
className="h-[56px] flex-1 rounded-[12px] bg-[#f1f3f5] text-[18px] font-semibold text-basic-text flex items-center justify-center"
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ export default function ResetPasswordPage() {
|
|||||||
onFocus={() => setFocused((p) => ({ ...p, email: true }))}
|
onFocus={() => setFocused((p) => ({ ...p, email: true }))}
|
||||||
onBlur={() => setFocused((p) => ({ ...p, email: false }))}
|
onBlur={() => setFocused((p) => ({ ...p, email: false }))}
|
||||||
placeholder="이메일을 입력해 주세요."
|
placeholder="이메일을 입력해 주세요."
|
||||||
className="h-[40px] px-[12px] py-[7px] w-full rounded-[8px] border border-neutral-40 focus:outline-none focus:border-neutral-700 text-[18px] text-neutral-700 placeholder:text-input-placeholder-text pr-[40px]"
|
className={`h-[40px] px-[12px] py-[7px] w-full rounded-[8px] border focus:outline-none text-[18px] text-neutral-700 placeholder:text-input-placeholder-text pr-[40px] ${errors.email ? 'border-error' : 'border-neutral-40 focus:border-neutral-700'}`}
|
||||||
/>
|
/>
|
||||||
{email.trim().length > 0 && focused.email && (
|
{email.trim().length > 0 && focused.email && (
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user