fix: feed title line heights (#9346)
This commit is contained in:
@@ -235,10 +235,11 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
|
|||||||
style={[
|
style={[
|
||||||
a.text_md,
|
a.text_md,
|
||||||
a.font_bold,
|
a.font_bold,
|
||||||
a.leading_tight,
|
a.leading_snug,
|
||||||
gtMobile && a.text_lg,
|
gtMobile && a.text_lg,
|
||||||
]}
|
]}
|
||||||
numberOfLines={2}>
|
numberOfLines={2}
|
||||||
|
emoji>
|
||||||
{info.displayName}
|
{info.displayName}
|
||||||
</Text>
|
</Text>
|
||||||
<View style={[a.flex_row, {gap: 6}]}>
|
<View style={[a.flex_row, {gap: 6}]}>
|
||||||
@@ -442,11 +443,12 @@ function DialogInner({
|
|||||||
<View style={[a.flex_1, a.gap_2xs]}>
|
<View style={[a.flex_1, a.gap_2xs]}>
|
||||||
<Text
|
<Text
|
||||||
style={[a.text_2xl, a.font_bold, a.leading_tight]}
|
style={[a.text_2xl, a.font_bold, a.leading_tight]}
|
||||||
numberOfLines={2}>
|
numberOfLines={2}
|
||||||
|
emoji>
|
||||||
{info.displayName}
|
{info.displayName}
|
||||||
</Text>
|
</Text>
|
||||||
<Text
|
<Text
|
||||||
style={[a.text_sm, a.leading_tight, t.atoms.text_contrast_medium]}
|
style={[a.text_sm, a.leading_relaxed, t.atoms.text_contrast_medium]}
|
||||||
numberOfLines={1}>
|
numberOfLines={1}>
|
||||||
<Trans>
|
<Trans>
|
||||||
By{' '}
|
By{' '}
|
||||||
@@ -456,12 +458,7 @@ function DialogInner({
|
|||||||
did: info.creatorDid,
|
did: info.creatorDid,
|
||||||
handle: info.creatorHandle,
|
handle: info.creatorHandle,
|
||||||
})}
|
})}
|
||||||
style={[
|
style={[a.text_sm, a.underline, t.atoms.text_contrast_medium]}
|
||||||
a.text_sm,
|
|
||||||
a.leading_tight,
|
|
||||||
a.underline,
|
|
||||||
t.atoms.text_contrast_medium,
|
|
||||||
]}
|
|
||||||
numberOfLines={1}
|
numberOfLines={1}
|
||||||
onPress={() => control.close()}>
|
onPress={() => control.close()}>
|
||||||
{sanitizeHandle(info.creatorHandle, '@')}
|
{sanitizeHandle(info.creatorHandle, '@')}
|
||||||
|
|||||||
Reference in New Issue
Block a user