2026-05-03 19:51:57 -05:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
|
|
|
|
|
|
const Card = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
style: global readability/theme pass
- Sharpened font stack in index.css, removed softer Georgia digit font for UI text/money
- Tuned dark-mode tokens: clearer foreground, brighter muted text, stronger borders, defined cards
- Updated UI primitives: cards, buttons, inputs, selects, tables, badges
- Cleaned up bills rows, mobile bill rows, tracker dismiss, snowball icons, summary/category/health/analytics money values, import/export status icons
- Reduced fuzzy uppercase label spacing globally
2026-05-28 23:18:14 -05:00
|
|
|
className={cn('rounded-2xl border border-border/80 bg-card/95 text-card-foreground shadow-sm shadow-black/10 transition-shadow hover:shadow-md hover:shadow-black/10', className)}
|
2026-05-03 19:51:57 -05:00
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
Card.displayName = 'Card';
|
|
|
|
|
|
|
|
|
|
const CardHeader = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('flex flex-col space-y-1.5 p-6', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
CardHeader.displayName = 'CardHeader';
|
|
|
|
|
|
|
|
|
|
const CardTitle = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
style: global readability/theme pass
- Sharpened font stack in index.css, removed softer Georgia digit font for UI text/money
- Tuned dark-mode tokens: clearer foreground, brighter muted text, stronger borders, defined cards
- Updated UI primitives: cards, buttons, inputs, selects, tables, badges
- Cleaned up bills rows, mobile bill rows, tracker dismiss, snowball icons, summary/category/health/analytics money values, import/export status icons
- Reduced fuzzy uppercase label spacing globally
2026-05-28 23:18:14 -05:00
|
|
|
className={cn('font-semibold leading-tight text-foreground', className)}
|
2026-05-03 19:51:57 -05:00
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
CardTitle.displayName = 'CardTitle';
|
|
|
|
|
|
|
|
|
|
const CardDescription = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
style: global readability/theme pass
- Sharpened font stack in index.css, removed softer Georgia digit font for UI text/money
- Tuned dark-mode tokens: clearer foreground, brighter muted text, stronger borders, defined cards
- Updated UI primitives: cards, buttons, inputs, selects, tables, badges
- Cleaned up bills rows, mobile bill rows, tracker dismiss, snowball icons, summary/category/health/analytics money values, import/export status icons
- Reduced fuzzy uppercase label spacing globally
2026-05-28 23:18:14 -05:00
|
|
|
className={cn('text-sm font-medium leading-relaxed text-muted-foreground', className)}
|
2026-05-03 19:51:57 -05:00
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
CardDescription.displayName = 'CardDescription';
|
|
|
|
|
|
|
|
|
|
const CardContent = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('p-6 pt-0', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
CardContent.displayName = 'CardContent';
|
|
|
|
|
|
|
|
|
|
const CardFooter = React.forwardRef(({ className, ...props }, ref) => (
|
|
|
|
|
<div
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('flex items-center p-6 pt-0', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
));
|
|
|
|
|
CardFooter.displayName = 'CardFooter';
|
|
|
|
|
|
|
|
|
|
export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter };
|