From 16e1ce4558189a43055e6185703e9ab92b6ce1da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 1 Mar 2026 16:16:47 +0100 Subject: [PATCH] fix: reduce MobileTabs button padding from py-2.5 to py-1.5 Co-Authored-By: Claude Sonnet 4.6 --- components/ui/mobile-tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/mobile-tabs.tsx b/components/ui/mobile-tabs.tsx index e72d371..a3a1b4d 100644 --- a/components/ui/mobile-tabs.tsx +++ b/components/ui/mobile-tabs.tsx @@ -19,7 +19,7 @@ export function MobileTabs({ tabs, active, onChange }: MobileTabsProps) { key={value} onClick={() => onChange(value)} className={cn( - 'flex-1 py-2.5 rounded-lg text-sm font-medium transition-all', + 'flex-1 py-1.5 rounded-lg text-sm font-medium transition-all', active === value ? 'bg-primary text-primary-foreground shadow-sm' : 'text-muted-foreground hover:text-foreground'