Skip to content

Commit

Permalink
Merge pull request #1 from Sendach/master
Browse files Browse the repository at this point in the history
Adjusted the styling of the response
  • Loading branch information
Supernova3339 authored Mar 4, 2024
2 parents c153a1e + 72ea8d1 commit 2134508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/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-lg border bg-card text-card-foreground shadow-sm flex items-center justify-center",
className
)}
{...props}
Expand Down Expand Up @@ -60,7 +60,7 @@ const CardContent = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
<div ref={ref} className={cn("p-2", className)} {...props} />
))
CardContent.displayName = "CardContent"

Expand Down

0 comments on commit 2134508

Please sign in to comment.