Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix: remove shadows from cards
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Jul 4, 2024
1 parent 6eb9d94 commit 1d46d8d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions frontend/src/components/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-xl border bg-card text-card-foreground shadow",
className
)}
className={cn("rounded-xl border bg-card text-card-foreground", className)}
{...props}
/>
));
Expand Down Expand Up @@ -75,9 +72,9 @@ CardFooter.displayName = "CardFooter";

export {
Card,
CardHeader,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
CardDescription,
CardContent,
};

0 comments on commit 1d46d8d

Please sign in to comment.