From 253ad4e2b027451f647646c3211446619121ec24 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Tue, 18 Feb 2025 09:12:49 +0100 Subject: [PATCH] NORY-46: modify card component for mobile devices --- dashboard/src/components/ui/card.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/components/ui/card.tsx b/dashboard/src/components/ui/card.tsx index 3c69472..22ccc98 100644 --- a/dashboard/src/components/ui/card.tsx +++ b/dashboard/src/components/ui/card.tsx @@ -23,7 +23,7 @@ const CardHeader = React.forwardRef< >(({ className, ...props }, ref) => (
)); @@ -60,7 +60,7 @@ const CardContent = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( -
+
)); CardContent.displayName = 'CardContent'; @@ -70,7 +70,7 @@ const CardFooter = React.forwardRef< >(({ className, ...props }, ref) => (
));