From 9990afd5dd939c605e474dcd20a9df1a1fc66f5e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:51:15 +0000 Subject: [PATCH] Jules was unable to complete the task in time. Please review the work done so far and provide feedback for Jules to continue. --- app/components/ui/Button.tsx | 6 +++--- app/components/ui/Input.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/ui/Button.tsx b/app/components/ui/Button.tsx index a2f9e3bc..20669f43 100644 --- a/app/components/ui/Button.tsx +++ b/app/components/ui/Button.tsx @@ -3,7 +3,7 @@ import { cva, type VariantProps } from 'class-variance-authority'; import { classNames } from '~/utils/classNames'; const buttonVariants = cva( - 'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-bolt-elements-borderColor disabled:pointer-events-none disabled:opacity-50', + 'inline-flex items-center justify-center whitespace-nowrap rounded-lg text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-bolt-elements-borderColor disabled:pointer-events-none disabled:opacity-50', { variants: { variant: { @@ -18,8 +18,8 @@ const buttonVariants = cva( }, size: { default: 'h-9 px-4 py-2', - sm: 'h-8 rounded-md px-3 text-xs', - lg: 'h-10 rounded-md px-8', + sm: 'h-8 rounded-lg px-3 text-xs', + lg: 'h-10 rounded-lg px-8', icon: 'h-9 w-9', }, }, diff --git a/app/components/ui/Input.tsx b/app/components/ui/Input.tsx index 64762502..e857bbfe 100644 --- a/app/components/ui/Input.tsx +++ b/app/components/ui/Input.tsx @@ -8,7 +8,7 @@ const Input = forwardRef(({ className, type, ...pr