From 222dd940b9df8ea93fe9e2b9e1f1bb4157ce8058 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 28 Feb 2026 21:35:24 +0000 Subject: [PATCH] Adjust photo gallery image positioning to better center people Update the object-position CSS property for images in the photo gallery component to "center 25%" to improve the focus on subjects. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 517dfa7b-26ac-463d-a6e1-a58c6df97188 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: a239f616-bc53-449a-a710-664444aa8180 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/517dfa7b-26ac-463d-a6e1-a58c6df97188/drGbo1a Replit-Helium-Checkpoint-Created: true --- client/src/components/photo-gallery.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/photo-gallery.tsx b/client/src/components/photo-gallery.tsx index 25496e9..0cf2842 100644 --- a/client/src/components/photo-gallery.tsx +++ b/client/src/components/photo-gallery.tsx @@ -115,7 +115,7 @@ function SingleImageCarousel({ src={images[index].large || images[index].thumb} alt={images[index].fileName} className="absolute inset-0 w-full h-full object-cover transition-opacity duration-500" - style={{ objectPosition: "center 30%" }} + style={{ objectPosition: "center 25%" }} loading="lazy" data-testid="img-gallery-current" />