Refactor: Reduce area height on mobile

This commit is contained in:
gpt-engineer-app[bot]
2025-09-30 12:46:51 +00:00
parent e76ae37fb7
commit b1c9b9e91b

View File

@@ -194,7 +194,7 @@ export default function ManufacturerDetail() {
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 mb-8">
{manufacturer.founded_year && (
<Card>
<CardContent className="p-4 text-center">
<CardContent className="p-3 md:p-4 text-center">
<Calendar className="w-6 h-6 text-primary mx-auto mb-2" />
<div className="text-2xl font-bold">{manufacturer.founded_year}</div>
<div className="text-sm text-muted-foreground">Founded</div>
@@ -203,7 +203,7 @@ export default function ManufacturerDetail() {
)}
{manufacturer.website_url && (
<Card>
<CardContent className="p-4 text-center">
<CardContent className="p-3 md:p-4 text-center">
<Globe className="w-6 h-6 text-primary mx-auto mb-2" />
<a
href={manufacturer.website_url}