Fixes to lineheight on web to counteract emoji issues
This commit is contained in:
parent
80bd3398d7
commit
d97e233518
8 changed files with 31 additions and 14 deletions
|
@ -188,7 +188,7 @@ export const FeedItem = observer(function FeedItem({
|
|||
style={styles.metaItem}
|
||||
href={authors[0].href}
|
||||
title={`@${authors[0].handle}`}>
|
||||
<Text style={[pal.text, s.bold]}>
|
||||
<Text style={[pal.text, s.bold]} lineHeight={1.2}>
|
||||
{authors[0].displayName || authors[0].handle}
|
||||
</Text>
|
||||
</Link>
|
||||
|
@ -333,10 +333,16 @@ function ExpandedAuthorsList({
|
|||
/>
|
||||
</View>
|
||||
<View style={s.flex1}>
|
||||
<Text type="lg-bold" numberOfLines={1} style={pal.text}>
|
||||
<Text
|
||||
type="lg-bold"
|
||||
numberOfLines={1}
|
||||
style={pal.text}
|
||||
lineHeight={1.2}>
|
||||
{author.displayName || author.handle}
|
||||
|
||||
<Text style={[pal.textLight]}>{author.handle}</Text>
|
||||
<Text style={[pal.textLight]} lineHeight={1.2}>
|
||||
{author.handle}
|
||||
</Text>
|
||||
</Text>
|
||||
</View>
|
||||
</Link>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue