From 19cd0a2cb04edb4ae0c8381d6b6b1e88f5edc0df Mon Sep 17 00:00:00 2001 From: Lukas May Date: Fri, 6 Mar 2026 11:21:08 +0100 Subject: [PATCH] fix: Cover transparent gap above sticky review header Use negative margin to pull sticky header into the parent space-y-3 gap, with matching padding and bg-background to paint over it when stuck. --- apps/web/src/components/review/ReviewTab.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/review/ReviewTab.tsx b/apps/web/src/components/review/ReviewTab.tsx index 09bdd7e..361623a 100644 --- a/apps/web/src/components/review/ReviewTab.tsx +++ b/apps/web/src/components/review/ReviewTab.tsx @@ -325,7 +325,8 @@ export function ReviewTab({ initiativeId }: ReviewTabProps) { return (
{/* Header: phase selector + toolbar */} -
+
+
({ id: p.id, name: p.name, status: p.status }))} activePhaseId={activePhaseId} @@ -345,6 +346,7 @@ export function ReviewTab({ initiativeId }: ReviewTabProps) { totalCount={allFiles.length} />
+
{/* Main content area — sidebar always rendered to preserve state */}