diff --git a/apps/landing/src/app/[locale]/(main)/footer.tsx b/apps/landing/src/app/[locale]/(main)/footer.tsx index e63cc0919..3dd23d74c 100644 --- a/apps/landing/src/app/[locale]/(main)/footer.tsx +++ b/apps/landing/src/app/[locale]/(main)/footer.tsx @@ -261,7 +261,7 @@ export const Footer: React.FunctionComponent = () => { → diff --git a/apps/web/src/app/[locale]/(space)/components/sidebar/app-sidebar.tsx b/apps/web/src/app/[locale]/(space)/components/sidebar/app-sidebar.tsx index 909a49394..d4c2d21e6 100644 --- a/apps/web/src/app/[locale]/(space)/components/sidebar/app-sidebar.tsx +++ b/apps/web/src/app/[locale]/(space)/components/sidebar/app-sidebar.tsx @@ -93,7 +93,7 @@ export async function AppSidebar({ />

- diff --git a/packages/ui/src/badge.tsx b/packages/ui/src/badge.tsx index 31a5ccabe..329b7ef55 100644 --- a/packages/ui/src/badge.tsx +++ b/packages/ui/src/badge.tsx @@ -13,9 +13,10 @@ const badgeVariants = cva( destructive: "bg-destructive text-destructive-foreground", outline: "text-foreground", green: "bg-green-600 text-white", - secondary: "bg-primary-50 text-primary", + secondary: "border border-primary-200 bg-primary-50 text-primary", }, size: { + sm: "h-5 min-w-5 px-1.5 text-xs", md: "h-6 min-w-5 px-2 text-xs", lg: "h-7 min-w-7 px-2.5 text-sm", }, diff --git a/packages/ui/src/button.tsx b/packages/ui/src/button.tsx index 584b4a431..1fd8da973 100644 --- a/packages/ui/src/button.tsx +++ b/packages/ui/src/button.tsx @@ -29,10 +29,10 @@ const buttonVariants = cva( link: "border-transparent text-primary underline-offset-4 hover:underline", }, size: { - default: "h-9 gap-x-2 rounded-md px-2.5 text-sm", - sm: "h-8 gap-x-1.5 rounded-md px-2 text-sm", + default: "h-8 gap-x-2 rounded-md px-2 text-sm", + sm: "h-7 gap-x-1.5 rounded-md px-1.5 text-sm", lg: "h-12 gap-x-3 rounded-lg px-4 text-base", - icon: "size-7 gap-x-1.5 rounded-md text-sm", + icon: "size-7 gap-x-1.5 rounded-lg text-sm", "icon-lg": "size-8 rounded-full", }, }, diff --git a/packages/ui/src/command.tsx b/packages/ui/src/command.tsx index e1f7b4368..ea424e15a 100644 --- a/packages/ui/src/command.tsx +++ b/packages/ui/src/command.tsx @@ -34,7 +34,7 @@ const CommandDialog = ({ children, ...props }: CommandDialogProps) => { hideCloseButton={true} size="xl" position="top" - className="p-0 shadow-huge" + className="p-0" > {children} @@ -145,7 +145,7 @@ const CommandItemShortcut = React.forwardRef< {children} {!hideCloseButton ? ( - +