Skip to content

Commit

Permalink
fix: input 버그 픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
lurgi committed Oct 24, 2024
1 parent 26cdff9 commit 484a557
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend/src/pages/SignUp/EmailVerifyField/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ const FieldWrapper = styled.div`
display: flex;
justify-content: space-between;
gap: 1rem;
/* [10.24 - 러기]Safari 브라우저에서 발생한 버그를 고치기 위한 코드입니다. Sign-up 페이지에서 Input 버튼 컴포넌트가 벗어나는 현상*/
& > div > input,
& > div > div > input {
width: 100%;
}
`;

const ButtonWrapper = styled.div`
Expand Down

0 comments on commit 484a557

Please sign in to comment.