diff options
author | Hailey <153161762+haileyok@users.noreply.github.com> | 2024-01-31 12:52:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 12:52:02 -0800 |
commit | dfc5a03eb5608aba68aa295082fc7c421f38463e (patch) | |
tree | 11758a1627227831972658e95e4140aaf0317d2b /src | |
parent | 174900596fb7a8690e57867193a7b893052b9af4 (diff) | |
download | voidsky-dfc5a03eb5608aba68aa295082fc7c421f38463e.tar.zst |
add padding to bottom offset (#2715)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Onboarding/Layout.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx index 50487c189..b9683999f 100644 --- a/src/screens/Onboarding/Layout.tsx +++ b/src/screens/Onboarding/Layout.tsx @@ -173,7 +173,7 @@ export function Layout({children}: React.PropsWithChildren<{}>) { ? a.py_2xl : { paddingTop: a.pt_lg.paddingTop, - paddingBottom: insets.bottom, + paddingBottom: insets.bottom + 10, }, ]}> <View |