diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 13:42:26 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 13:42:26 -0700 |
commit | f891305185fdc6f3d9911f20c58068df5504973c (patch) | |
tree | 268f72b84e87612263d1a0697711252b18324c71 /src | |
parent | 8bb3f40a59232f71ae2b09509e3ae2559a04e4a7 (diff) | |
download | voidsky-f891305185fdc6f3d9911f20c58068df5504973c.tar.zst |
fix padding on Discover Feeds screen
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/DiscoverFeeds.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/screens/DiscoverFeeds.tsx b/src/view/screens/DiscoverFeeds.tsx index 82a37942f..cd32ec655 100644 --- a/src/view/screens/DiscoverFeeds.tsx +++ b/src/view/screens/DiscoverFeeds.tsx @@ -72,6 +72,7 @@ export const DiscoverFeedsScreen = withAuthRequired( style={[!isDesktopWeb && s.flex1]} data={feeds.feeds} keyExtractor={item => item.data.uri} + contentContainerStyle={styles.contentContainer} refreshControl={ <RefreshControl refreshing={feeds.isRefreshing} @@ -93,7 +94,9 @@ export const DiscoverFeedsScreen = withAuthRequired( const styles = StyleSheet.create({ container: { flex: 1, - paddingBottom: isDesktopWeb ? 0 : 100, + }, + contentContainer: { + paddingBottom: 100, }, containerDesktop: { borderLeftWidth: 1, |