fix option box minHeight so that it fits on iPhone SE (#6588)

This commit is contained in:
Elias Nahum 2022-08-24 08:55:26 -04:00 committed by GitHub
parent afa38ddee6
commit 37e13b81b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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),

View file

@ -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),