From 5aa78b72e007464fde66948cebbdd7715a8ff525 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 15 Aug 2024 17:11:28 -0400 Subject: [PATCH] fix: venue-photo horizontal overflows --- src/components/VenuePhotos.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/VenuePhotos.astro b/src/components/VenuePhotos.astro index 60f9e66..19d140c 100644 --- a/src/components/VenuePhotos.astro +++ b/src/components/VenuePhotos.astro @@ -37,6 +37,7 @@ const { class: className, ...rest } = Astro.props; } .venue-photo { - max-width: 100%; + width: 100%; + max-width: calc(100vw - var(--widthBodyPadding)); }