diff --git a/app/components/ui/button.tsx b/app/components/ui/button.tsx index 2d040414..a166e95a 100644 --- a/app/components/ui/button.tsx +++ b/app/components/ui/button.tsx @@ -6,7 +6,7 @@ import * as React from 'react' import { cn } from '#app/utils/misc.tsx' const buttonVariants = cva( - 'inline-flex items-center justify-center rounded-md text-sm font-medium outline-none ring-ring ring-offset-2 ring-offset-background transition-colors focus-within:ring-2 focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50', + 'inline-flex items-center justify-center rounded-lg text-sm font-medium outline-none ring-ring ring-offset-2 ring-offset-background transition-colors focus-within:ring-2 focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50', { variants: { variant: { @@ -21,10 +21,10 @@ const buttonVariants = cva( link: 'text-primary underline-offset-4 hover:underline', }, size: { - default: 'h-10 px-4 py-2', + default: 'h-12 px-6 py-3', wide: 'px-24 py-5', - sm: 'h-9 rounded-md px-3', - lg: 'h-11 rounded-md px-8', + sm: 'h-9 rounded-lg px-3', + lg: 'h-14 rounded-lg px-8', pill: 'px-12 py-3 leading-3', icon: 'h-10 w-10', }, diff --git a/app/components/ui/dropdown-menu.tsx b/app/components/ui/dropdown-menu.tsx index 3bb4fe3a..b1b3a070 100644 --- a/app/components/ui/dropdown-menu.tsx +++ b/app/components/ui/dropdown-menu.tsx @@ -44,7 +44,7 @@ const DropdownMenuSubContent = React.forwardRef< diff --git a/app/components/ui/input.tsx b/app/components/ui/input.tsx index 1bbc64d9..6090dedc 100644 --- a/app/components/ui/input.tsx +++ b/app/components/ui/input.tsx @@ -11,7 +11,7 @@ const Input = React.forwardRef( ( return (