Skip to content

Commit 0d7344c

Browse files
committed
fix: 레이아웃이 화면 전체 높이를 차지하도록 설정
1 parent f581e6c commit 0d7344c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/CenteredLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ interface CenteredLayoutProps {
55
}
66

77
const CenteredLayout = ({ children }: CenteredLayoutProps) => (
8-
<div className="flex w-screen justify-center bg-gray-50">
9-
<div className="flex w-full justify-center">{children}</div>
8+
<div className="flex min-h-screen w-screen justify-center bg-gray-50">
9+
<div className="flex w-full justify-center bg-gray-50">{children}</div>
1010
</div>
1111
);
1212

0 commit comments

Comments
 (0)