diff options
Diffstat (limited to 'src/view/screens')
-rw-r--r-- | src/view/screens/AccessibilitySettings.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/LanguageSettings.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Search/Explore.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Search/Search.tsx | 3 | ||||
-rw-r--r-- | src/view/screens/Settings/index.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Storybook/index.tsx | 2 |
6 files changed, 8 insertions, 5 deletions
diff --git a/src/view/screens/AccessibilitySettings.tsx b/src/view/screens/AccessibilitySettings.tsx index 2a4477532..5cb5c6a39 100644 --- a/src/view/screens/AccessibilitySettings.tsx +++ b/src/view/screens/AccessibilitySettings.tsx @@ -80,7 +80,7 @@ export function AccessibilitySettingsScreen({}: Props) { style={s.flex1} contentContainerStyle={[ s.flex1, - {paddingBottom: 200}, + {paddingBottom: 100}, isMobile && pal.viewLight, ]}> <Text type="xl-bold" style={[pal.text, styles.heading]}> diff --git a/src/view/screens/LanguageSettings.tsx b/src/view/screens/LanguageSettings.tsx index 390d2807b..0f27db522 100644 --- a/src/view/screens/LanguageSettings.tsx +++ b/src/view/screens/LanguageSettings.tsx @@ -145,6 +145,7 @@ export function LanguageSettingsScreen(_props: Props) { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, + fontFamily: 'inherit', letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, @@ -236,6 +237,7 @@ export function LanguageSettingsScreen(_props: Props) { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, + fontFamily: 'inherit', letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index a36c40444..650fd4354 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -571,7 +571,7 @@ export function Explore() { keyExtractor={item => item.key} // @ts-ignore web only -prf desktopFixedHeight - contentContainerStyle={{paddingBottom: 200}} + contentContainerStyle={{paddingBottom: 100}} keyboardShouldPersistTaps="handled" keyboardDismissMode="on-drag" /> diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index 0eef5cbd6..737e4c5c3 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -783,7 +783,7 @@ let SearchInputBox = ({ }}> <MagnifyingGlassIcon style={[pal.icon, styles.headerSearchIcon]} - size={21} + size={20} /> <TextInput testID="searchTextInput" @@ -1071,6 +1071,7 @@ const styles = StyleSheet.create({ headerSearchInput: { flex: 1, fontSize: 17, + minWidth: 0, }, headerCancelBtn: { paddingLeft: 10, diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index a75fec546..521c2019a 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -325,7 +325,7 @@ export function SettingsScreen({}: Props) { </View> </SimpleViewHeader> <ScrollView - style={[s.hContentRegion, isMobile && pal.viewLight]} + style={[isMobile && pal.viewLight]} scrollIndicatorInsets={{right: 1}} // @ts-ignore web only -prf dataSet={{'stable-gutters': 1}}> diff --git a/src/view/screens/Storybook/index.tsx b/src/view/screens/Storybook/index.tsx index 282b3ff5c..71dbe8839 100644 --- a/src/view/screens/Storybook/index.tsx +++ b/src/view/screens/Storybook/index.tsx @@ -36,7 +36,7 @@ function StorybookInner() { return ( <CenteredView style={[t.atoms.bg]}> - <View style={[a.p_xl, a.gap_5xl, {paddingBottom: 200}]}> + <View style={[a.p_xl, a.gap_5xl, {paddingBottom: 100}]}> {!showContainedList ? ( <> <View style={[a.flex_row, a.align_start, a.gap_md]}> |