feat(ui): update Card and Badge with Warm Precision styling

Card: rounded-lg → rounded-sm, border-border → border-border-default
Badge: rounded-md → rounded-sm, border-border → border-border-default

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-21 12:37:14 -05:00
parent 5bb8dece44
commit 2e301c9ffa
2 changed files with 3 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ function Badge({ className, color, children, ...props }: BadgeProps) {
return ( return (
<span <span
className={cn( className={cn(
'inline-flex items-center rounded-md px-1.5 py-0.5 text-xs font-medium border', 'inline-flex items-center rounded-sm px-1.5 py-0.5 text-xs font-medium border',
!color && 'border-border bg-elevated text-text-secondary', !color && 'border-border-default bg-elevated text-text-secondary',
className, className,
)} )}
style={style} style={style}

View File

@@ -6,7 +6,7 @@ const Card = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElemen
<div <div
ref={ref} ref={ref}
className={cn( className={cn(
'rounded-lg border border-border bg-panel text-text-primary', 'rounded-sm border border-border-default bg-panel text-text-primary',
className, className,
)} )}
{...props} {...props}