Skip to content

Commit

Permalink
refactor: 로그인 페이지 입력창 스타일 수정 (#96)
Browse files Browse the repository at this point in the history
- box-sizing 설정
- 입력 박스 padding 추가
  • Loading branch information
surra7 authored Jan 4, 2025
1 parent 5f886f7 commit e477756
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/LoginForm/FormInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const InputWrap = styled.input`
height: 4rem;
width: 38rem;
font-size: 1.9rem;
padding: 0 1rem;
`;

export default FormInput;
2 changes: 1 addition & 1 deletion src/pages/index/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function Login() {
<ListItem>
수집된 개인정보는{' '}
<Highlight>매일 자정에 자동으로 서버에서 삭제</Highlight>됩니다.
만약 자정 전에 정보를 삭제하고 싶으신 경우,
만약 자정 전에 정보를 삭제하고 싶으신 경우,{' '}
<Highlight onClick={() => navigate('/delete')}>
https://tutorial-sejong.com/delete
</Highlight>{' '}
Expand Down
4 changes: 4 additions & 0 deletions src/styles/GlobalStyle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ const GlobalStyle = createGlobalStyle`
-moz-appearance: textfield;
}
*{
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
Expand Down

0 comments on commit e477756

Please sign in to comment.