Fix underline color in header

This commit is contained in:
Eric Bailey
2024-03-14 11:59:12 -05:00
parent b8162aa3a7
commit 84f4c423fd
+4 -6
View File
@@ -30,23 +30,21 @@ export function ProfileHeaderMetrics({
pointerEvents="box-none"> pointerEvents="box-none">
<InlineLink <InlineLink
testID="profileHeaderFollowersButton" testID="profileHeaderFollowersButton"
style={a.flex_row} style={[a.flex_row, t.atoms.text]}
to={makeProfileLink(profile, 'followers')} to={makeProfileLink(profile, 'followers')}
label={`${followers} ${pluralizedFollowers}`}> label={`${followers} ${pluralizedFollowers}`}>
<Text style={[a.font_bold, t.atoms.text, a.text_md]}>{followers} </Text> <Text style={[a.font_bold, a.text_md]}>{followers} </Text>
<Text style={[t.atoms.text_contrast_medium, a.text_md]}> <Text style={[t.atoms.text_contrast_medium, a.text_md]}>
{pluralizedFollowers} {pluralizedFollowers}
</Text> </Text>
</InlineLink> </InlineLink>
<InlineLink <InlineLink
testID="profileHeaderFollowsButton" testID="profileHeaderFollowsButton"
style={a.flex_row} style={[a.flex_row, t.atoms.text]}
to={makeProfileLink(profile, 'follows')} to={makeProfileLink(profile, 'follows')}
label={_(msg`${following} following`)}> label={_(msg`${following} following`)}>
<Trans> <Trans>
<Text style={[a.font_bold, t.atoms.text, a.text_md]}> <Text style={[a.font_bold, a.text_md]}>{following} </Text>
{following}{' '}
</Text>
<Text style={[t.atoms.text_contrast_medium, a.text_md]}> <Text style={[t.atoms.text_contrast_medium, a.text_md]}>
following following
</Text> </Text>