Skip to content

Commit

Permalink
fix(components): Card Component Edge Rounding Match with Global Theme…
Browse files Browse the repository at this point in the history
… Configuration
  • Loading branch information
monzim authored Sep 25, 2023
1 parent 4f8d768 commit 2630a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/www/registry/default/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Card = React.forwardRef<
<div
ref={ref}
className={cn(
"rounded-lg border bg-card text-card-foreground shadow-sm",
"rounded-sm border bg-card text-card-foreground shadow-sm",
className
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion apps/www/registry/new-york/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Card = React.forwardRef<
<div
ref={ref}
className={cn(
"rounded-xl border bg-card text-card-foreground shadow",
"rounded-md border bg-card text-card-foreground shadow",
className
)}
{...props}
Expand Down

0 comments on commit 2630a28

Please sign in to comment.