fix(site): use overflow-auto on TabsPanel to prevent layout jump (#1148)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-03-27 13:53:19 -05:00
committed by GitHub
co-authored by Claude
parent 3b65c55445
commit 68a671368f
+1 -1
View File
@@ -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
)}
>