From b618cf661b6bc16dfdcb53e7d9f876514135ba13 Mon Sep 17 00:00:00 2001 From: "Manav.Shrivastava" Date: Thu, 30 Jul 2026 17:26:15 +0530 Subject: [PATCH] Fix display scaling scroll issue in connector integration and other views Add min-h-0 to
elements across surface views to fix CSS grid overflow clipping at non-default display scales. Root cause: the .app grid's
items had default min-height: auto, causing them to grow beyond the viewport when content was tall (e.g., increased display scaling). Since .app has overflow: hidden, the overflow was silently clipped with no scrollbar. Adding min-h-0 (min-height: 0) allows grid items to shrink below their intrinsic content height, letting the inner overflow-y-auto div properly constrain and scroll. Fixes andrewyng/openworker#321 --- surfaces/gui/src/components/AuditView.tsx | 2 +- surfaces/gui/src/components/InboxView.tsx | 2 +- surfaces/gui/src/components/IntegrationsView.tsx | 2 +- surfaces/gui/src/components/ScheduledView.tsx | 2 +- surfaces/gui/src/components/SettingsView.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/surfaces/gui/src/components/AuditView.tsx b/surfaces/gui/src/components/AuditView.tsx index 02f4dcd0..7e8b2424 100644 --- a/surfaces/gui/src/components/AuditView.tsx +++ b/surfaces/gui/src/components/AuditView.tsx @@ -30,7 +30,7 @@ export function AuditView() { }, []); return ( -
+
+
+