add saved feeds to left nav on desktop

This commit is contained in:
Ansh Nanda 2023-05-25 13:14:40 -07:00
parent 6e5078e0c1
commit 8bb3f40a59
3 changed files with 25 additions and 4 deletions

View file

@ -28,7 +28,7 @@ const FeedsTabBarDesktop = observer(
) => {
const store = useStores()
const items = useMemo(
() => ['Following', ...store.me.savedFeeds.pinnedFeedNames, 'My Feeds'],
() => ['Following', ...store.me.savedFeeds.pinnedFeedNames],
[store.me.savedFeeds.pinnedFeedNames],
)
const pal = usePalette('default')

View file

@ -110,13 +110,16 @@ const styles = isDesktopWeb
outer: {
flexDirection: 'row',
width: 598,
paddingHorizontal: 14,
},
contentContainer: {},
contentContainer: {
columnGap: 14,
marginLeft: 14,
paddingRight: 14,
backgroundColor: 'transparent',
},
item: {
paddingTop: 14,
paddingBottom: 12,
paddingHorizontal: 12,
borderBottomWidth: 3,
borderBottomColor: 'transparent',
},