Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix text overflow in post meta on web (#10122)

authored by

DS Boyce and committed by
GitHub
2c828b57 c06312f0

+11 -2
+1
src/components/ProfileHoverCard/index.web.tsx
··· 519 519 a.leading_snug, 520 520 a.font_semi_bold, 521 521 a.self_start, 522 + {minWidth: 0}, 522 523 ]}> 523 524 {sanitizeDisplayName( 524 525 profile.displayName || sanitizeHandle(profile.handle),
+10 -2
src/view/com/util/PostMeta.tsx
··· 82 82 /> 83 83 </View> 84 84 )} 85 - <View style={[a.flex_row, a.align_end, a.flex_shrink]}> 85 + <View 86 + style={[a.flex_row, a.align_end, a.flex_shrink, web({minWidth: 0})]}> 86 87 <ProfileHoverCard did={author.did}> 87 - <View style={[a.flex_row, a.align_end, a.flex_shrink]}> 88 + <View 89 + style={[ 90 + a.flex_row, 91 + a.align_end, 92 + a.flex_shrink, 93 + web({minWidth: 0}), 94 + ]}> 88 95 <MaybeLinkText 89 96 emoji 90 97 numberOfLines={1} ··· 125 132 t.atoms.text_contrast_medium, 126 133 a.leading_tight, 127 134 {flexShrink: 10}, 135 + web({minWidth: 0}), 128 136 ]}> 129 137 {NON_BREAKING_SPACE + sanitizeHandle(handle, '@')} 130 138 </MaybeLinkText>