From 01f6fa5f0e84fa8067a018f45a600280f0b01a30 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Tue, 3 Mar 2026 16:29:58 -0500 Subject: [PATCH] Fix sticky header by moving overflow-x-hidden to body overflow-x-hidden on the pages wrapper div created a new scroll context that prevented position: sticky from working on the header. Moving it to preserves the horizontal overflow clipping without breaking sticky positioning. Co-Authored-By: Claude Opus 4.6 --- app/(pages)/layout.tsx | 2 +- app/layout.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(pages)/layout.tsx b/app/(pages)/layout.tsx index fea2098..e8b2d82 100644 --- a/app/(pages)/layout.tsx +++ b/app/(pages)/layout.tsx @@ -15,7 +15,7 @@ export default async function PagesLayout({ return ( <> -
+
{/* Ambient glow */}
diff --git a/app/layout.tsx b/app/layout.tsx index fd18d2b..5604668 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -34,7 +34,7 @@ export default function RootLayout({ return ( {children}