Skip to content

Commit

Permalink
#10 <feat> : 로그인페이지로 이동 할 수 있는 버튼 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
benidene committed Sep 11, 2023
1 parent b462346 commit a453736
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/pages/SignUp/SignUp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ function SignUp() {
/>
<AuthButton onClick={clickAuthPhoneNumber}>확인</AuthButton>
</InputBoxDown>
<Login to='/login'>로그인하기 {'>'} </Login>
</Container>

<LoginButton type='submit' onClick={onClick}>
회원가입
</LoginButton>
Expand All @@ -135,13 +135,13 @@ const Container = styled.div`
flex-direction: column;
align-items: center;
width: 460px;
height: 50vh;
height: 54vh;
min-height: 460px;
`;

const LogoBox = styled(Link)`
height: 100px;
width: 100px;
margin-bottom: -8vh;
`;

const Logo = styled.img`
Expand Down Expand Up @@ -170,7 +170,6 @@ const InputBox = styled.div`
padding: 0px 10px 0px 45px;
border: 1px solid lightgray;
border-width: 0px 1px 1px 1px;
border: 1px solid lightgray;
`;

const Input = styled.input`
Expand Down Expand Up @@ -200,6 +199,14 @@ const AuthButton = styled.button`
margin-right: -30px;
`;

const Login = styled(Link)`
margin-top: 1vh;
padding-right: 10px;
width: 100%;
display: flex;
justify-content: end;
`;

const LoginButton = styled.button`
height: 60px;
width: 460px;
Expand Down

0 comments on commit a453736

Please sign in to comment.