From 5391ad0ae522be9d35cfb74e834baf97cc48c55d Mon Sep 17 00:00:00 2001 From: Benjamin Sutter Date: Mon, 18 May 2026 21:35:36 +0200 Subject: [PATCH] fix: image above map stacked vertically in PropertyDetailView (160px + 120px) Co-Authored-By: Claude Sonnet 4.6 --- src/components/supply/PropertyDetailView.tsx | 40 +++++++++----------- 1 file changed, 18 insertions(+), 22 deletions(-) diff --git a/src/components/supply/PropertyDetailView.tsx b/src/components/supply/PropertyDetailView.tsx index fc2e547..55e4dec 100644 --- a/src/components/supply/PropertyDetailView.tsx +++ b/src/components/supply/PropertyDetailView.tsx @@ -366,28 +366,24 @@ export function PropertyDetailView({ propertyId, onClose }: PropertyDetailViewPr )} - {/* Photo + Map — side by side, compact */} - {(property.images?.[0] || property.location.coordinates) && ( - - {property.images?.[0] && ( - - {property.title} - - )} - {property.location.coordinates && ( - - - - )} + {/* Photo + Map — stacked, compact */} + {property.images?.[0] && ( + + {property.title} + + )} + {property.location.coordinates && ( + + )}