Skip to content

Commit

Permalink
fix : 레이아웃 수정 (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangminguu authored Nov 7, 2024
1 parent d9f561d commit 2226bf1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/pages/LandingPage/ui/Page/Page.styled.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import styled from 'styled-components';

export const Container = styled.div`
position: absolute;
top: 0;
width: 100%;
height: 100%;
max-width: 960px;
margin: auto;
top: 63px;
height: calc(100vh - 63px);
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
justify-content: center;
`;
export const PageContainer = styled.div`
max-width: 960px;
width: 100%;
`;

export const LandingContainer = styled.div`
margin-bottom: 30px;
`;
Expand Down

0 comments on commit 2226bf1

Please sign in to comment.