Cap every page at 1920px so layouts stop stretching on ultrawide viewports.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
adilallo
2026-08-19 13:34:00 -06:00
co-authored by Cursor
parent 99c5c28a51
commit d427d96a83
2 changed files with 14 additions and 1 deletions
+3 -1
View File
@@ -146,7 +146,9 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<body
className={`${inter.variable} ${bricolageGrotesque.variable} ${spaceGrotesk.variable}`}
>
<div className="min-h-screen flex flex-col">{children}</div>
<div className="mx-auto flex min-h-screen w-full max-w-[1920px] flex-col">
{children}
</div>
</body>
</html>
);