Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes vertical alignment in feed tab bar (#974)

The tab bar items need `justify-content: center` on them or else they can appear unaligned when a feed name has an emoji character in it.

authored by

Ændra Rininsland and committed by
GitHub
99aa38e3 3498c1d2

+2
+2
src/view/com/pager/TabBar.tsx
··· 109 109 paddingHorizontal: 10, 110 110 borderBottomWidth: 3, 111 111 borderBottomColor: 'transparent', 112 + justifyContent: 'center' 112 113 }, 113 114 }) 114 115 : StyleSheet.create({ ··· 129 130 paddingHorizontal: isMobileWeb ? 8 : 0, 130 131 borderBottomWidth: 3, 131 132 borderBottomColor: 'transparent', 133 + justifyContent: 'center' 132 134 }, 133 135 })