diff options
Diffstat (limited to 'src/view/com/pager')
-rw-r--r-- | src/view/com/pager/FeedsTabBar.web.tsx | 2 | ||||
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 7 | ||||
-rw-r--r-- | src/view/com/pager/TabBar.tsx | 16 |
3 files changed, 18 insertions, 7 deletions
diff --git a/src/view/com/pager/FeedsTabBar.web.tsx b/src/view/com/pager/FeedsTabBar.web.tsx index b51db1741..0df915950 100644 --- a/src/view/com/pager/FeedsTabBar.web.tsx +++ b/src/view/com/pager/FeedsTabBar.web.tsx @@ -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') diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index 426f7628b..94d04f32d 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -58,7 +58,12 @@ export const FeedsTabBar = observer( Bluesky </Text> <View style={[pal.view]}> - <Link href="/settings/saved-feeds" hitSlop={10}> + <Link + href="/settings/saved-feeds" + hitSlop={10} + accessibilityRole="button" + accessibilityLabel="Edit Saved Feeds" + accessibilityHint="Opens screen to edit Saved Feeds"> <FontAwesomeIcon icon="satellite-dish" size={19} diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx index f89dbe88a..ec636d053 100644 --- a/src/view/com/pager/TabBar.tsx +++ b/src/view/com/pager/TabBar.tsx @@ -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', }, @@ -125,10 +128,13 @@ const styles = isDesktopWeb outer: { flex: 1, flexDirection: 'row', + backgroundColor: 'transparent', }, contentContainer: { - gap: 18, - paddingHorizontal: 18, + columnGap: 14, + marginLeft: 14, + paddingRight: 28, + backgroundColor: 'transparent', }, item: { paddingTop: 8, |