From c6da7acb3811076f62fc7944fe5f209995b1e43f Mon Sep 17 00:00:00 2001 From: Leon Date: Thu, 26 Feb 2026 15:49:54 +0100 Subject: [PATCH] feat: colmun --- src/screens/cover/PouchReady.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/screens/cover/PouchReady.js b/src/screens/cover/PouchReady.js index 9226b90..52b6a1f 100644 --- a/src/screens/cover/PouchReady.js +++ b/src/screens/cover/PouchReady.js @@ -322,7 +322,8 @@ const PouchReady = () => { flexDirection: isWeb ? 'row' : 'column', gap: 16, justifyContent: 'center', - flexWrap: 'wrap', + flexWrap: isWeb ? 'wrap' : 'nowrap', + alignItems: isWeb ? 'flex-start' : 'center', }} > {displayOptions.length > 0 ? ( @@ -679,7 +680,8 @@ const styles = StyleSheet.create({ maxWidth: 320, }, coverOptionCardMobile: { - width: '100%', + width: 150, + alignSelf: 'center', }, coverOptionCardSelected: { borderColor: Palette.primary,