From f81ff27a9e0dbd0c32482fd44ae605822f60ab52 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 18 Jul 2025 14:52:19 -0700 Subject: [PATCH] Don't wrap tab content --- src-web/components/core/Tabs/Tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/core/Tabs/Tabs.tsx b/src-web/components/core/Tabs/Tabs.tsx index ea3eb86d..b8132da2 100644 --- a/src-web/components/core/Tabs/Tabs.tsx +++ b/src-web/components/core/Tabs/Tabs.tsx @@ -99,7 +99,7 @@ export function Tabs({ {tabs.map((t) => { const isActive = t.value === value; const btnClassName = classNames( - 'h-sm flex items-center rounded', + 'h-sm flex items-center rounded whitespace-nowrap', '!px-2 ml-[1px]', addBorders && 'border', isActive ? 'text-text' : 'text-text-subtle hover:text-text',