add saved feeds to left nav on desktop
This commit is contained in:
parent
6e5078e0c1
commit
8bb3f40a59
3 changed files with 25 additions and 4 deletions
|
@ -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')
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue