Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix positioning with overflows in the post meta

+11 -24
+11 -24
src/view/com/util/PostMeta.tsx
··· 25 25 ) 26 26 return ( 27 27 <View style={styles.meta}> 28 - <View style={[styles.metaNames, maxWidth]}> 29 - <Link 30 - style={[styles.metaItem, maxWidth]} 31 - href={opts.authorHref} 32 - title={opts.authorHandle}> 33 - <Text style={[s.f17, s.bold]} numberOfLines={1}> 34 - {opts.authorDisplayName || opts.authorHandle} 28 + <Link 29 + style={[styles.metaItem, maxWidth]} 30 + href={opts.authorHref} 31 + title={opts.authorHandle}> 32 + <Text style={[s.f17, s.bold]} numberOfLines={1}> 33 + {opts.authorDisplayName || opts.authorHandle} 34 + <Text style={[s.f15, s.gray5, s.normal]} numberOfLines={1}> 35 + &nbsp;{opts.authorHandle} 35 36 </Text> 36 - </Link> 37 - <Link 38 - style={[styles.metaItem, maxWidth]} 39 - href={opts.authorHref} 40 - title={opts.authorHandle}> 41 - <Text style={[s.f15, s.gray5]} numberOfLines={1}> 42 - @{opts.authorHandle} 43 - </Text> 44 - </Link> 45 - </View> 37 + </Text> 38 + </Link> 46 39 <Text style={[styles.metaItem, s.f15, s.gray5]}> 47 - {ago(opts.timestamp)} 40 + &middot; {ago(opts.timestamp)} 48 41 </Text> 49 42 <View style={s.flex1} /> 50 43 <PostDropdownBtn ··· 65 58 alignItems: 'center', 66 59 paddingTop: 2, 67 60 paddingBottom: 2, 68 - }, 69 - metaNames: { 70 - flexDirection: 'row', 71 - flexWrap: 'wrap', 72 - alignItems: 'center', 73 - overflow: 'hidden', 74 61 }, 75 62 metaItem: { 76 63 paddingRight: 5,