Skip to content

Commit 86a912a

Browse files
committed
Fix the layout problem where cards overflowed on mobile
1 parent 6d3c725 commit 86a912a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
9393
>
9494
<div className="relative flex min-h-screen w-full flex-col ">
9595
<SiteHeader />
96-
<div className="flex-1 p-1 py-8 mx-auto max-w-[2000px] ">{children}</div>
96+
<div className="flex-1 p-1 py-8 w-full mx-auto max-w-[2000px]">{children}</div>
9797
<SiteFooter />
9898
</div>
9999
</ThemeProvider>

0 commit comments

Comments
 (0)