Skip to content

Commit

Permalink
[Chore/#33] Login Input 간격 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jaminleee committed Sep 4, 2024
1 parent dff9c6b commit 7b6e9f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/signUp/SignUpCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ export default function SignUpCard() {
<div className={styles.signUpCardContainer}>
<img src={Logo} className={styles.logo} alt="구름톤 유니브 로고" />
<div className={styles.loginContainer}>
<Input value={email} bsSize="xl" placeholder="이메일" onChange={handleEmailChange} />
<Input type="password" value={password} bsSize="xl" placeholder="비밀번호" onChange={handlePasswordChange} />
<div className={styles.inputContainer}>
<Input value={email} bsSize="xl" placeholder="이메일" onChange={handleEmailChange} />
<Input type="password" value={password} bsSize="xl" placeholder="비밀번호" onChange={handlePasswordChange} />
</div>

<Button size="xl" onClick={handleLogin}>
로그인
</Button>
Expand Down
6 changes: 6 additions & 0 deletions src/components/signUp/signUpCard.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
width: 19.3rem;
}

.inputContainer {
display: flex;
flex-direction: column;
gap: var(--space-100);
}

.logo {
width: 16rem;
margin-bottom: var(--space-600);
Expand Down

0 comments on commit 7b6e9f6

Please sign in to comment.