generally consistent across web/ios

This commit is contained in:
Eric Bailey
2023-10-09 17:53:23 -05:00
parent d9fc2775c4
commit 50335206bf
3 changed files with 36 additions and 34 deletions
+7 -3
View File
@@ -5,6 +5,7 @@ import {
StyleSheet,
NativeSyntheticEvent,
TextInputKeyPressEventData,
Platform,
} from 'react-native'
import {
FontAwesomeIcon,
@@ -141,8 +142,11 @@ const styles = StyleSheet.create({
flexGrow: 1,
minWidth: 100,
fontSize: 15,
lineHeight: 15,
paddingTop: 5,
paddingBottom: 6,
lineHeight: Platform.select({
web: 20,
native: 18,
}),
paddingTop: 4,
paddingBottom: 4,
},
})