From 335c736219a04179732373dc8a037a04dd941d0e Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 4 Mar 2026 20:47:28 +0100 Subject: [PATCH] fix: pipeline selected round ring cutoff by overflow scroll Add vertical padding to the scrollable pipeline container so the ring-2 highlight on selected rounds isn't clipped. Co-Authored-By: Claude Opus 4.6 --- src/components/observer/observer-dashboard-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/observer/observer-dashboard-content.tsx b/src/components/observer/observer-dashboard-content.tsx index fa2a501..d1ed72d 100644 --- a/src/components/observer/observer-dashboard-content.tsx +++ b/src/components/observer/observer-dashboard-content.tsx @@ -197,7 +197,7 @@ export function ObserverDashboardContent({ userName }: { userName?: string }) { ))} ) : roundOverview && roundOverview.rounds.length > 0 ? ( -
+
{roundOverview.rounds.map((round, idx) => { const isSelected = selectedRoundId === round.roundId const isActive = round.roundStatus === 'ROUND_ACTIVE'