diff options
Diffstat (limited to 'src/screens/Profile/Sections')
-rw-r--r-- | src/screens/Profile/Sections/Feed.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/screens/Profile/Sections/Feed.tsx b/src/screens/Profile/Sections/Feed.tsx index bc106fcfb..cc52eef3b 100644 --- a/src/screens/Profile/Sections/Feed.tsx +++ b/src/screens/Profile/Sections/Feed.tsx @@ -95,7 +95,11 @@ function ProfileEndOfFeed() { const pal = usePalette('default') return ( - <View style={[pal.border, {paddingTop: 32, borderTopWidth: 1}]}> + <View + style={[ + pal.border, + {paddingTop: 32, paddingBottom: 32, borderTopWidth: 1}, + ]}> <Text style={[pal.textLight, pal.border, {textAlign: 'center'}]}> <Trans>End of feed</Trans> </Text> |