diff options
author | Pokai Chang <pokaichang72@gmail.com> | 2024-05-21 09:28:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 02:28:18 +0100 |
commit | 87fa50143337f40569af9727e808d200cc64ba37 (patch) | |
tree | 21ff17cdb3d4cedfbc61019b3f9d9e00c4b77f65 /src | |
parent | aa34d6b4d29897d744dee30d9c22f6a0861128b8 (diff) | |
download | voidsky-87fa50143337f40569af9727e808d200cc64ba37.tar.zst |
expand the background color to cover the overscroll area on settings screen (#4101)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Settings/index.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index b3b937c61..c72cb96ae 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -327,8 +327,7 @@ export function SettingsScreen({}: Props) { </View> </SimpleViewHeader> <ScrollView - style={s.hContentRegion} - contentContainerStyle={isMobile && pal.viewLight} + style={[s.hContentRegion, isMobile && pal.viewLight]} scrollIndicatorInsets={{right: 1}} // @ts-ignore web only -prf dataSet={{'stable-gutters': 1}}> |