From aeaf6300ecfed417bf0ea2bb80426275d33d295c Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Thu, 23 Jul 2026 16:16:15 +0100 Subject: [PATCH] fix(webapp): double the padding + gap around and between the charts (TRI-12068) Bump the MetricsLayout chart-area spacing from 1.5 to 3 (grid gap + gutter, the scroll column's vertical gap/padding, and the content separation), so the list charts match the detail charts' spacing and both pages breathe more (item 2). --- apps/webapp/app/components/layout/MetricsLayout.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/webapp/app/components/layout/MetricsLayout.tsx b/apps/webapp/app/components/layout/MetricsLayout.tsx index 4e1ac3014..df8d725ec 100644 --- a/apps/webapp/app/components/layout/MetricsLayout.tsx +++ b/apps/webapp/app/components/layout/MetricsLayout.tsx @@ -178,7 +178,7 @@ function MetricsLayoutMain({ children, scroll }: { children: ReactNode; scroll:
@@ -318,7 +318,7 @@ function MetricsLayoutGrid({ return (
{children}
; + return
{children}
; } export const MetricsLayout = {