From 9f28514f3f804fa0d07f02bbf97536c5333e8274 Mon Sep 17 00:00:00 2001 From: Brent O'Neill Date: Tue, 30 Sep 2025 12:55:49 -0600 Subject: [PATCH] updated core components with correct styles --- frontend/components/ui/card.tsx | 6 +++--- frontend/components/ui/select.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/components/ui/card.tsx b/frontend/components/ui/card.tsx index b9bacd0d..ef47a52e 100644 --- a/frontend/components/ui/card.tsx +++ b/frontend/components/ui/card.tsx @@ -8,8 +8,8 @@ const Card = React.forwardRef<
@@ -34,7 +34,7 @@ const CardTitle = React.forwardRef< ref={ref} className={cn( "text-base font-semibold leading-tight tracking-tight", - className, + className )} {...props} /> diff --git a/frontend/components/ui/select.tsx b/frontend/components/ui/select.tsx index 66665060..63874553 100644 --- a/frontend/components/ui/select.tsx +++ b/frontend/components/ui/select.tsx @@ -26,7 +26,7 @@ const SelectTrigger = React.forwardRef< span]:line-clamp-1", + "flex h-10 w-full items-center justify-between rounded-md border border-input px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:bg-muted [&>span]:line-clamp-1 disabled:border-none", className )} {...props} @@ -34,7 +34,7 @@ const SelectTrigger = React.forwardRef< {children} {props.disabled ? ( - + ) : ( )}