Skip to content

Commit 0835690

Browse files
authored
Merge pull request #328 from solid-connection/fix/login-input
fix: 로그인 페이지 인풋 필드 디자인 업데이트
2 parents 6f9dc14 + c7c9695 commit 0835690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/login/LoginContent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const LoginContent = () => {
8484
<input
8585
type="email"
8686
placeholder="이메일"
87-
className="h-[41px] w-full rounded-lg border px-5 py-3 font-serif typo-regular-4 text-k-400 focus:outline-none"
87+
className="w-full rounded-lg border border-k-100 px-5 py-3 font-serif typo-regular-4 text-k-400 focus:outline-none"
8888
{...register("email", {
8989
onChange: handleEmailChange,
9090
})}
@@ -101,7 +101,7 @@ const LoginContent = () => {
101101
<input
102102
type="password"
103103
placeholder="비밀번호"
104-
className="h-[41px] w-full rounded-lg border px-5 py-3 font-serif typo-regular-4 text-k-400 focus:outline-none"
104+
className="w-full rounded-lg border border-k-100 px-5 py-3 font-serif typo-regular-4 text-k-400 focus:outline-none"
105105
{...register("password")}
106106
onKeyDown={handleKeyDown}
107107
/>

0 commit comments

Comments
 (0)