From 37e13b81b5d21ab00de64d560b640d93abfda369 Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Wed, 24 Aug 2022 08:55:26 -0400 Subject: [PATCH] fix option box minHeight so that it fits on iPhone SE (#6588) --- app/components/option_box/animated.tsx | 2 +- app/components/option_box/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/option_box/animated.tsx b/app/components/option_box/animated.tsx index 7e5880bce..0cde6d139 100644 --- a/app/components/option_box/animated.tsx +++ b/app/components/option_box/animated.tsx @@ -31,7 +31,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ borderRadius: 4, flex: 1, maxHeight: OPTIONS_HEIGHT, - minWidth: 80, + minWidth: 60, }, background: { backgroundColor: changeOpacity(theme.centerChannelColor, 0.04), diff --git a/app/components/option_box/index.tsx b/app/components/option_box/index.tsx index 752df0dec..1406e3cd9 100644 --- a/app/components/option_box/index.tsx +++ b/app/components/option_box/index.tsx @@ -33,7 +33,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ flex: 1, maxHeight: OPTIONS_HEIGHT, justifyContent: 'center', - minWidth: 80, + minWidth: 60, }, destructiveContainer: { backgroundColor: changeOpacity(theme.dndIndicator, 0.04),