Skip to content

Commit

Permalink
fix(): Remove card shadow.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Sep 26, 2024
1 parent 9bbb64a commit 2e1039b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/shadcn/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ const Card = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"rounded border bg-card text-card-foreground shadow",
className
)}
className={cn("rounded border bg-card text-card-foreground", className)}
{...props}
/>
));
Expand Down

0 comments on commit 2e1039b

Please sign in to comment.