about summary refs log tree commit diff
path: root/src/view/shell/desktop/Feeds.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-12-28 13:27:02 -0800
committerPaul Frazee <pfrazee@gmail.com>2023-12-28 13:27:02 -0800
commit47127ce0abf48f6c6d85e04be6eb04ca33804168 (patch)
tree6590f37af802ae2e80efe04256b841c433d0aa22 /src/view/shell/desktop/Feeds.tsx
parent40a110c5416de08bc8a929ecd7dd023028a869bf (diff)
parent71b6a447ab250201e5772e43b745edb587b781b7 (diff)
downloadvoidsky-47127ce0abf48f6c6d85e04be6eb04ca33804168.tar.zst
Merge branch 'web-search' of https://github.com/mozzius/bluesky-official-app into mozzius-web-search
Diffstat (limited to 'src/view/shell/desktop/Feeds.tsx')
-rw-r--r--src/view/shell/desktop/Feeds.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/shell/desktop/Feeds.tsx b/src/view/shell/desktop/Feeds.tsx
index 93b96e704..a8f5f1c66 100644
--- a/src/view/shell/desktop/Feeds.tsx
+++ b/src/view/shell/desktop/Feeds.tsx
@@ -21,7 +21,7 @@ export function DesktopFeeds() {
   })
 
   return (
-    <View style={[styles.container, pal.view, pal.border]}>
+    <View style={[styles.container, pal.view]}>
       <FeedItem href="/" title="Following" current={route.name === 'Home'} />
       {feeds
         .filter(f => f.displayName !== 'Following')
@@ -91,7 +91,5 @@ const styles = StyleSheet.create({
     width: 300,
     paddingHorizontal: 12,
     paddingVertical: 18,
-    borderTopWidth: 1,
-    borderBottomWidth: 1,
   },
 })