mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 05:11:13 -05:00
Refactor: Reduce area height on mobile
This commit is contained in:
@@ -194,7 +194,7 @@ export default function ManufacturerDetail() {
|
|||||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 mb-8">
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 mb-8">
|
||||||
{manufacturer.founded_year && (
|
{manufacturer.founded_year && (
|
||||||
<Card>
|
<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" />
|
<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-2xl font-bold">{manufacturer.founded_year}</div>
|
||||||
<div className="text-sm text-muted-foreground">Founded</div>
|
<div className="text-sm text-muted-foreground">Founded</div>
|
||||||
@@ -203,7 +203,7 @@ export default function ManufacturerDetail() {
|
|||||||
)}
|
)}
|
||||||
{manufacturer.website_url && (
|
{manufacturer.website_url && (
|
||||||
<Card>
|
<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" />
|
<Globe className="w-6 h-6 text-primary mx-auto mb-2" />
|
||||||
<a
|
<a
|
||||||
href={manufacturer.website_url}
|
href={manufacturer.website_url}
|
||||||
|
|||||||
Reference in New Issue
Block a user