diff options
Diffstat (limited to 'src/view/com/pager')
-rw-r--r-- | src/view/com/pager/FeedsTabBar.web.tsx | 7 | ||||
-rw-r--r-- | src/view/com/pager/TabBar.tsx | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/view/com/pager/FeedsTabBar.web.tsx b/src/view/com/pager/FeedsTabBar.web.tsx index 13ee9a68c..56ca6f2a1 100644 --- a/src/view/com/pager/FeedsTabBar.web.tsx +++ b/src/view/com/pager/FeedsTabBar.web.tsx @@ -28,7 +28,12 @@ const FeedsTabBarDesktop = observer( ) => { const store = useStores() const items = useMemo( - () => ['Following', "What's hot", ...store.me.savedFeeds.pinnedFeedNames], + () => [ + 'Following', + "What's hot", + ...store.me.savedFeeds.pinnedFeedNames, + 'My feeds', + ], [store.me.savedFeeds.pinnedFeedNames], ) const pal = usePalette('default') diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx index a04693fa4..fe76a08b6 100644 --- a/src/view/com/pager/TabBar.tsx +++ b/src/view/com/pager/TabBar.tsx @@ -107,11 +107,12 @@ const styles = isDesktopWeb ? StyleSheet.create({ outer: { flexDirection: 'row', - paddingHorizontal: 18, + width: 598, + paddingHorizontal: 14, }, item: { paddingTop: 14, - paddingBottom: 16, + paddingBottom: 12, paddingHorizontal: 12, borderBottomWidth: 3, borderBottomColor: 'transparent', |