From 68a671368f81314bce6a28c4bad6df75b560a13e Mon Sep 17 00:00:00 2001 From: Darius Cepulis Date: Fri, 27 Mar 2026 13:53:19 -0500 Subject: [PATCH] fix(site): use overflow-auto on TabsPanel to prevent layout jump (#1148) Co-authored-by: Claude --- site/src/components/Tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/Tabs.tsx b/site/src/components/Tabs.tsx index a409d391..a4be72b7 100644 --- a/site/src/components/Tabs.tsx +++ b/site/src/components/Tabs.tsx @@ -307,7 +307,7 @@ export function TabsPanel({ value, children, initial, className, variant = 'comp hidden={!isActive} data-value={value} className={twMerge( - clsx('overflow-scroll p-6 max-h-96 flex-1', variant === 'compact' && 'bg-faded-black dark:bg-soot'), + clsx('overflow-auto p-6 max-h-96 flex-1', variant === 'compact' && 'bg-faded-black dark:bg-soot'), className )} >