Deps Update and minor changes (#222)
1. Revert Card changes 2. Use X logo instead of Twitter 3. Update Dependencies * Remove reference to pg_sodium as new Supabase CLI doesn't play well with it
This commit is contained in:
committed by
GitHub
parent
6fbc5cf6e5
commit
e7f17dd34f
@@ -33,7 +33,7 @@
|
||||
"clsx": "^2.1.1",
|
||||
"cmdk": "1.1.1",
|
||||
"input-otp": "1.4.2",
|
||||
"lucide-react": "^0.483.0",
|
||||
"lucide-react": "^0.484.0",
|
||||
"react-top-loading-bar": "3.0.2",
|
||||
"recharts": "2.15.1",
|
||||
"tailwind-merge": "^3.0.2"
|
||||
@@ -56,8 +56,8 @@
|
||||
"react-day-picker": "^8.10.1",
|
||||
"react-hook-form": "^7.54.2",
|
||||
"react-i18next": "^15.4.1",
|
||||
"sonner": "^2.0.1",
|
||||
"tailwindcss": "4.0.15",
|
||||
"sonner": "^2.0.2",
|
||||
"tailwindcss": "4.0.17",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"typescript": "^5.8.2",
|
||||
"zod": "^3.24.2"
|
||||
|
||||
@@ -17,7 +17,7 @@ const CardHeader: React.FC<React.HTMLAttributes<HTMLDivElement>> = ({
|
||||
className,
|
||||
...props
|
||||
}) => (
|
||||
<div className={cn('flex flex-col space-y-1.5 p-4 lg:p-6', className)} {...props} />
|
||||
<div className={cn('flex flex-col space-y-1.5 p-6', className)} {...props} />
|
||||
);
|
||||
CardHeader.displayName = 'CardHeader';
|
||||
|
||||
@@ -43,7 +43,7 @@ CardDescription.displayName = 'CardDescription';
|
||||
const CardContent: React.FC<React.HTMLAttributes<HTMLDivElement>> = ({
|
||||
className,
|
||||
...props
|
||||
}) => <div className={cn('p-4 pt-0 lg:p-6 lg:pt-0', className)} {...props} />;
|
||||
}) => <div className={cn('p-6 pt-0', className)} {...props} />;
|
||||
CardContent.displayName = 'CardContent';
|
||||
|
||||
const CardFooter: React.FC<React.HTMLAttributes<HTMLDivElement>> = ({
|
||||
|
||||
Reference in New Issue
Block a user