about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-05-25 14:58:04 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-05-25 14:58:04 -0500
commita39a06ba09803412bca053d9fc836d1d2cdd4b4b (patch)
tree20912e3c0cdde90a9f29a5149c5644470bf1a941
parentf03ac9fd56dd9a1fc6ad84b19d102c35356de91e (diff)
downloadvoidsky-a39a06ba09803412bca053d9fc836d1d2cdd4b4b.tar.zst
Tune the saved feeds ui
-rw-r--r--src/view/screens/SavedFeeds.tsx12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/view/screens/SavedFeeds.tsx b/src/view/screens/SavedFeeds.tsx
index b3a48b427..dac554710 100644
--- a/src/view/screens/SavedFeeds.tsx
+++ b/src/view/screens/SavedFeeds.tsx
@@ -68,7 +68,7 @@ export const SavedFeeds = withAuthRequired(
       return (
         <>
           <View style={[styles.footerLinks, pal.border]}>
-            <Link style={[styles.footerLink, pal.border]} href="/search/feeds">
+            <Link style={styles.footerLink} href="/search/feeds">
               <FontAwesomeIcon
                 icon="search"
                 size={18}
@@ -118,11 +118,7 @@ export const SavedFeeds = withAuthRequired(
           pal.border,
           isDesktopWeb && styles.desktopContainer,
         ]}>
-        <ViewHeader
-          title="Edit My Feeds"
-          showOnDesktop
-          showBorder={!isDesktopWeb}
-        />
+        <ViewHeader title="My Feeds" showOnDesktop showBorder={!isDesktopWeb} />
         <DraggableFlatList
           containerStyle={[!isDesktopWeb && s.flex1]}
           data={savedFeeds.all}
@@ -277,7 +273,8 @@ const styles = StyleSheet.create({
   },
   footerText: {
     paddingHorizontal: 26,
-    paddingVertical: 22,
+    paddingTop: 22,
+    paddingBottom: 100,
   },
   footerLinks: {
     borderBottomWidth: 1,
@@ -285,7 +282,6 @@ const styles = StyleSheet.create({
   },
   footerLink: {
     flexDirection: 'row',
-    borderTopWidth: 1,
     paddingHorizontal: 26,
     paddingVertical: 18,
     gap: 18,