Skip to content

Commit

Permalink
Merge branch 'feature/196-addFooter' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
myeongheonhong committed Feb 2, 2024
2 parents 96b6a37 + 311778b commit 97d85a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Layout/EmptyLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function EmptyLayout(props: PropsWithChildren) {

const Container = styled.main`
width: 37.5rem;
height: 100svh;
height: 100%;
padding: 2.2rem 2.2rem 0 2.2rem;
`;
2 changes: 1 addition & 1 deletion components/Layout/HeaderLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function HeaderLayout(props: PropsWithChildren) {

const Container = styled.main<{ width: string }>`
width: ${(props) => props.width};
height: 100svh;
height: 100%;
padding: 0 2.2rem;
`;

0 comments on commit 97d85a3

Please sign in to comment.