diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/feeds/SavedFeeds.tsx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/view/com/feeds/SavedFeeds.tsx b/src/view/com/feeds/SavedFeeds.tsx index 610562c9d..1214e7abd 100644 --- a/src/view/com/feeds/SavedFeeds.tsx +++ b/src/view/com/feeds/SavedFeeds.tsx @@ -75,14 +75,8 @@ export const SavedFeeds = observer( </Link> )} </View> - <View - style={[ - pal.border, - !isDesktopWeb && s.flex1, - pal.viewLight, - styles.empty, - ]}> - <Text type="sm" style={[pal.text]}> + <View style={styles.footerText}> + <Text type="sm" style={pal.textLight}> Feeds are custom algorithms that users build with a little coding expertise.{' '} <TextLink @@ -150,4 +144,8 @@ const styles = StyleSheet.create({ marginHorizontal: 18, marginTop: 10, }, + footerText: { + paddingHorizontal: 26, + paddingVertical: 22, + }, }) |