Skip to content

Commit

Permalink
Fix: diagnostic card mobile (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickimoore committed Aug 21, 2023
1 parent 2b721ca commit 13aa398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DiagnosticCard/DiagnosticCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const DiagnosticCard: FC<DiagnosticCardProps> = ({
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`
}
Expand Down

0 comments on commit 13aa398

Please sign in to comment.