From 13aa3987480bd5d2a48bc6045bdff1ff5f95bd8e Mon Sep 17 00:00:00 2001 From: Ricki Moore Date: Mon, 21 Aug 2023 19:47:28 +0200 Subject: [PATCH] Fix: diagnostic card mobile (#207) --- src/components/DiagnosticCard/DiagnosticCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DiagnosticCard/DiagnosticCard.tsx b/src/components/DiagnosticCard/DiagnosticCard.tsx index 2b381547..63491b54 100644 --- a/src/components/DiagnosticCard/DiagnosticCard.tsx +++ b/src/components/DiagnosticCard/DiagnosticCard.tsx @@ -61,7 +61,7 @@ const DiagnosticCard: FC = ({ maxWidth || 'max-w-full md:max-w-xs' } py-2 px-3 xl:py-3 xl:px-4 dark:border-dark500` default: - return `${maxWidth || 'max-w-xs @1600:max-w-full'} ${ + return `${maxWidth || 'md:max-w-xs @1600:max-w-full'} ${ maxHeight || 'max-h-30' } py-2 px-3 xl:py-3 xl:px-4 dark:border-dark500` }