diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-24 23:59:37 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-24 23:59:37 -0500 |
commit | 5124be33ade7565850e7bcc557192f1f51c17801 (patch) | |
tree | 2e25bde887c6850d9c6354d3284a363368a6735e /src | |
parent | b00e0d71efb580c85449f45a26aa4457052c6807 (diff) | |
download | voidsky-5124be33ade7565850e7bcc557192f1f51c17801.tar.zst |
Tune the footer text ui a bit
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, + }, }) |