From 4f7d6345e70e51b72e6aa42bc8ddfa69ad148218 Mon Sep 17 00:00:00 2001 From: vineyardbovines Date: Fri, 5 Jun 2026 09:29:06 -0400 Subject: [PATCH] Make composer photo carousel extend edge-to-edge --- src/view/com/composer/photos/Gallery.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/view/com/composer/photos/Gallery.tsx b/src/view/com/composer/photos/Gallery.tsx index 7ec2d75ab1..1ecb193114 100644 --- a/src/view/com/composer/photos/Gallery.tsx +++ b/src/view/com/composer/photos/Gallery.tsx @@ -164,8 +164,17 @@ const GalleryInner = ({images, containerInfo, dispatch}: GalleryInnerProps) => { accessibilityHint="" role="group" aria-roledescription={_(msg`carousel`)} - style={[{marginTop: 16}, web({overscrollBehaviorX: 'contain'})]} - contentContainerStyle={{gap: IMAGE_GAP, paddingRight: IMAGE_GAP}}> + style={[ + { + marginTop: 16, + marginHorizontal: -tokens.space.lg, + }, + web({overscrollBehaviorX: 'contain'}), + ]} + contentContainerStyle={{ + gap: IMAGE_GAP, + paddingHorizontal: tokens.space.lg, + }}> {images.map(image => (