From 7b48b26c26729c05267716079934b13938c8d059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Sun, 22 Mar 2026 18:53:11 +0100 Subject: [PATCH] fix: timeline filter dropdown clipped by overflow-hidden MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove overflow-hidden from timeline page wrapper — it was clipping the ProjectCombobox and ResourceCombobox dropdown menus. The max-h-[100dvh] constraint combined with min-h-0 on flex children is sufficient to keep the scroll container within viewport bounds. Co-Authored-By: claude-flow --- apps/web/src/app/(app)/timeline/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/(app)/timeline/page.tsx b/apps/web/src/app/(app)/timeline/page.tsx index 6f8e683..d16dc8c 100644 --- a/apps/web/src/app/(app)/timeline/page.tsx +++ b/apps/web/src/app/(app)/timeline/page.tsx @@ -15,7 +15,7 @@ const TimelineView = dynamic( export default function TimelinePage() { return ( -
+

Timeline