Skip to content

Commit

Permalink
fix: Update payment methods boutique (#1819)
Browse files Browse the repository at this point in the history
Update tabs.tsx
  • Loading branch information
Tymmmy authored Nov 13, 2024
1 parent bbb374b commit 27b2e16
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/boutique/frontend/src/components/ui/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ const TabsList = forwardRef<
>(({ className, ...props }, ref) => (
<TabsPrimitive.List
ref={ref}
className={cn(
'inline-flex h-9 items-center justify-center rounded-lg',
className
)}
className={cn('flex gap-4 flex-wrap', className)}
{...props}
/>
))
Expand All @@ -26,7 +23,7 @@ const TabsTrigger = forwardRef<
<TabsPrimitive.Trigger
ref={ref}
className={cn(
'inline-flex w-40 items-center justify-center whitespace-nowrap rounded-md border p-1 mr-3 text-sm transition-all focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-80 bg-white',
'inline-flex flex-none w-40 items-center justify-center whitespace-nowrap rounded-md border p-1 text-sm transition-all focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-80 bg-white',
className
)}
{...props}
Expand Down

0 comments on commit 27b2e16

Please sign in to comment.