Skip to content

Commit

Permalink
fix: #39 회원가입 페이지 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoi96 committed Nov 19, 2022
1 parent ce199b8 commit 43482ad
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions client/src/pages/SignUp.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,21 @@ import { COLOR } from "styles/color";

export const LogoWrapper = styled.div`
color: ${COLOR.BLACK};
width: 90%;
width: 100%;
margin: 50px 0;
height: 29px;
font-size: 2.4rem;
font-weight: bold;
font-family: "Noto Sans KR";
margin: auto;
padding: 5rem;
text-align: center;
`;

export const InputWrapper = styled.div`
padding: 4rem;
width: 90%;
margin: auto;
width: 100%;
padding: 0 40px;
margin-bottom: 40px;
div {
display: block;
margin: auto;
input {
font-size: 1.4rem;
}
Expand All @@ -33,23 +30,18 @@ export const InputWrapper = styled.div`
}
button {
margin-top: 2.5rem;
margin-top: 25px;
}
`;

export const OptionsWrapper = styled.div`
color: grey;
color: ${COLOR.DARK_GRAY};
display: flex;
margin: auto;
width: 90%;
padding: 0 10rem;
justify-content: center;
width: 100%;
div {
display: flex;
justify-content: center;
flex-grow: 1;
padding: 0.1rem 0.9rem;
cursor: pointer;
padding: 0 1rem;
}
div:not(:last-child) {
Expand Down

0 comments on commit 43482ad

Please sign in to comment.