Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update payment methods boutique #1819

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading