Tune the footer text ui a bit

zio/stable
Paul Frazee 2023-05-24 23:59:37 -05:00
parent b00e0d71ef
commit 5124be33ad
1 changed files with 6 additions and 8 deletions

View File

@ -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,
},
})