Skip to content

Commit

Permalink
fix: 이메일 인증 번호 전송 시 이메일 input 커지는 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
eonseok-jeon committed Jul 30, 2024
1 parent 63a1ba7 commit 6e6a30e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/components/Input/components/InputTheme/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const TextBox이메일 = ({
return (
<TextBox label="이메일" name="email" required>
<InputLine
style={{ paddingRight: isActive ? 50 : 16 }}
style={{ width: 308, paddingRight: isActive ? 50 : 16 }}
name="email"
placeholder="이메일을 입력해주세요."
type="email"
Expand All @@ -153,6 +153,7 @@ export const TextBox이메일 = ({
<Timer isActive={isActive} onResetTimer={handleResetTimer} />
</InputLine>
<InputLine
style={{ width: 308 }}
id="verification-code"
readOnly={!isActive}
name="code"
Expand Down

0 comments on commit 6e6a30e

Please sign in to comment.