Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/home/components/top-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const TopSection = () => {
};

return (
<section className="bg-gray-black px-[1.6rem] pt-[0.1rem]">
<section className="min-h-[9.6rem] bg-gray-black px-[1.6rem] pt-[0.1rem]">
<CardBanner
subText="나와 딱 맞는 직관 메이트를 찾고 싶다면?"
text="이용가이드 보러 가기"
Expand Down
4 changes: 2 additions & 2 deletions src/pages/sign-up/components/signup-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ const SignupStep = () => {
return (
<form
onSubmit={handleSubmit(onSubmit)}
className="h-svh w-full flex-col justify-between gap-[4rem] px-[1.6rem] pt-[4rem] pb-[1.6rem]"
className="h-full w-full flex-col justify-between gap-[4rem] px-[1.6rem] pt-[4rem] pb-[1.6rem]"
>
<div className="w-full flex-col gap-[4rem]">
<div className="h-full w-full flex-col gap-[4rem]">
<h1 className="title_24_sb whitespace-pre-line">{NICKNAME_TITLE}</h1>
<div className=" flex-col gap-[2.4rem]">
<div className="flex-col gap-[0.8rem]">
Expand Down
18 changes: 8 additions & 10 deletions src/pages/sign-up/sign-up.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ const SignUp = () => {

return (
<div className="h-full flex-col bg-gray-white">
<div className="flex-1">
<Funnel>
<Step name="AGREEMENT">
<AgreementStep next={goNext} />
</Step>
<Step name="INFORMATION">
<SignupStep />
</Step>
</Funnel>
</div>
<Funnel>
<Step name="AGREEMENT">
<AgreementStep next={goNext} />
</Step>
<Step name="INFORMATION">
<SignupStep />
</Step>
</Funnel>
</div>
);
};
Expand Down