From 767dd83d0bddc4a4272f2b5ad27d4a1ae1fef7de Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 30 Jan 2024 16:55:57 -0800 Subject: cleanup --- src/view/com/util/images/ImageLayoutGrid.tsx | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/view/com/util/images/ImageLayoutGrid.tsx b/src/view/com/util/images/ImageLayoutGrid.tsx index 5698e26cb..cf0d190f4 100644 --- a/src/view/com/util/images/ImageLayoutGrid.tsx +++ b/src/view/com/util/images/ImageLayoutGrid.tsx @@ -48,10 +48,10 @@ function ImageLayoutGridInner(props: ImageLayoutGridInnerProps) { case 3: return ( - + - + @@ -94,6 +94,9 @@ function ImageLayoutGridInner(props: ImageLayoutGridInnerProps) { const IMAGE_GAP = 5 const styles = StyleSheet.create({ + flexRow: {flexDirection: 'row', gap: !isWeb ? IMAGE_GAP : undefined}, + smallItem: {flex: 1, aspectRatio: 1}, + container: isWeb ? { marginHorizontal: -IMAGE_GAP / 2, @@ -102,11 +105,17 @@ const styles = StyleSheet.create({ : { gap: IMAGE_GAP, }, - flexRow: {flexDirection: 'row', gap: !isWeb ? IMAGE_GAP : undefined}, - smallItem: {flex: 1, aspectRatio: 1}, image: isWeb ? { margin: IMAGE_GAP / 2, } : {}, + threeSingle: { + flex: 1, + gap: isWeb ? undefined : IMAGE_GAP, + }, + threeDouble: { + flex: 1, + gap: isWeb ? undefined : IMAGE_GAP, + }, }) -- cgit 1.4.1