Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

More spacing fixes, especially for the repost info

+9 -6
+1 -1
src/view/com/post/Post.tsx
··· 160 160 timestamp={item.post.indexedAt} 161 161 /> 162 162 {replyHref !== '' && ( 163 - <View style={[s.flexRow, s.mb5, {alignItems: 'center'}]}> 163 + <View style={[s.flexRow, s.mb2, {alignItems: 'center'}]}> 164 164 <FontAwesomeIcon 165 165 icon="reply" 166 166 size={9}
+8 -5
src/view/com/posts/FeedItem.tsx
··· 140 140 title={ 141 141 item.reasonRepost.by.displayName || item.reasonRepost.by.handle 142 142 }> 143 - <FontAwesomeIcon icon="retweet" style={styles.includeReasonIcon} /> 144 - <Text type="overline2" style={{color: pal.colors.actionLabel}}> 143 + <FontAwesomeIcon 144 + icon="retweet" 145 + style={[styles.includeReasonIcon, s.gray4]} 146 + /> 147 + <Text type="body2" style={{color: pal.colors.textLight}}> 145 148 Reposted by{' '} 146 149 {item.reasonRepost.by.displayName || item.reasonRepost.by.handle} 147 150 </Text> ··· 183 186 timestamp={item.post.indexedAt} 184 187 /> 185 188 {!isChild && replyHref !== '' && ( 186 - <View style={[s.flexRow, s.mb5, {alignItems: 'center'}]}> 189 + <View style={[s.flexRow, s.mb2, {alignItems: 'center'}]}> 187 190 <FontAwesomeIcon 188 191 icon="reply" 189 192 size={9} ··· 301 304 }, 302 305 includeReason: { 303 306 flexDirection: 'row', 304 - paddingLeft: 60, 307 + paddingLeft: 40, 308 + marginBottom: 2, 305 309 }, 306 310 includeReasonIcon: { 307 311 marginRight: 4, 308 - color: colors.gray4, 309 312 }, 310 313 layout: { 311 314 flexDirection: 'row',