diff --git a/src/lib/styles.ts b/src/lib/styles.ts index 263127440f..e3d0a2708f 100644 --- a/src/lib/styles.ts +++ b/src/lib/styles.ts @@ -1,6 +1,7 @@ import {Dimensions, StyleProp, StyleSheet, TextStyle} from 'react-native' -import {Theme, TypographyVariant} from './ThemeContext' + import {isWeb} from 'platform/detection' +import {Theme, TypographyVariant} from './ThemeContext' // 1 is lightest, 2 is light, 3 is mid, 4 is dark, 5 is darkest export const colors = { @@ -64,7 +65,7 @@ export const gradients = { export const s = StyleSheet.create({ // helpers - footerSpacer: {height: 100}, + footerSpacer: {height: 50}, contentContainer: {paddingBottom: 200}, contentContainerExtra: {paddingBottom: 300}, border0: {borderWidth: 0}, diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index a75fec5463..521c2019af 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -325,7 +325,7 @@ export function SettingsScreen({}: Props) {