diff --git a/components/Layout/EmptyLayout.tsx b/components/Layout/EmptyLayout.tsx index 562bc0d..c1d11a6 100644 --- a/components/Layout/EmptyLayout.tsx +++ b/components/Layout/EmptyLayout.tsx @@ -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; `; diff --git a/components/Layout/HeaderLayout.tsx b/components/Layout/HeaderLayout.tsx index 981aee7..54e840d 100644 --- a/components/Layout/HeaderLayout.tsx +++ b/components/Layout/HeaderLayout.tsx @@ -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; `;