Skip to content

Commit

Permalink
add style: signin media query
Browse files Browse the repository at this point in the history
  • Loading branch information
You-J committed Aug 23, 2021
1 parent 13c86ee commit 8b4c568
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions app/lib/pages/signin/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ export const BackIcon = styled.div`
`;

export const Inner = styled.div`
margin-top: 120px;
margin-top: 60px;
@media (min-height: 800px) {
margin-top: 120px;
}
`;

export const Title = styled.h2`
Expand All @@ -33,9 +37,13 @@ export const Title = styled.h2`
`;

export const BtnWrapper = styled.div`
margin-top: 391px;
/* margin-top: 391px; */
position: absolute;
bottom: 120px;
bottom: 60px;
@media (min-height: 800px) {
bottom: 120px;
}
`;

export const SignInBtn = styled.button`
Expand Down Expand Up @@ -71,7 +79,10 @@ export const Contents = styled.h6`
`;

export const LinkWrapper = styled(Column)`
margin-top: 90px;
margin-top: 45px;
@media (min-height: 800px) {
margin-top: 90px;
}
`;

export const LinkContents = styled.a`
Expand Down

0 comments on commit 8b4c568

Please sign in to comment.