Skip to content

Commit 0046726

Browse files
committed
feat: root layout 모바일 케이스로 임시대응
1 parent 87f9cf5 commit 0046726

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/routes/__root.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ function RootComponent() {
1919
);
2020

2121
return (
22-
<Flex direction="column" style={{ minHeight: "100vh" }}>
22+
<Flex
23+
direction="column"
24+
className="bg-neutral-200 min-h-screen max-w-[600px] mx-auto outline outline-1 outline-gray-200 -outline-offset-1"
25+
>
2326
{hasHeader && <Header />}
2427
<Container py="4" px="4">
2528
<Outlet />

0 commit comments

Comments
 (0)