diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 13:42:18 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 13:42:18 -0800 |
commit | c9704f447d9c81dd9f5b3429c2f0a38ef9bc3480 (patch) | |
tree | 30e1698fc87d4f4be1d9d940da91cf65da7c441f /src/view/shell/desktop/Feeds.tsx | |
parent | 40a110c5416de08bc8a929ecd7dd023028a869bf (diff) | |
parent | 363929b1a7defaff8e5224acfcb84cdce4fd1b9a (diff) | |
download | voidsky-c9704f447d9c81dd9f5b3429c2f0a38ef9bc3480.tar.zst |
Merge branch 'mozzius-web-search' into main
Diffstat (limited to 'src/view/shell/desktop/Feeds.tsx')
-rw-r--r-- | src/view/shell/desktop/Feeds.tsx | 4 |
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, }, }) |