Make composer photo carousel extend edge-to-edge

This commit is contained in:
vineyardbovines
2026-06-05 09:29:06 -04:00
parent 41251ade92
commit 4f7d6345e7
+11 -2
View File
@@ -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 => (
<GalleryItem
key={image.source.id}