equal spacing on displayname/handle (#5636)

This commit is contained in:
Samuel Newman
2024-10-07 21:12:05 +03:00
committed by GitHub
parent c365096200
commit 8d80f1344d
2 changed files with 2 additions and 2 deletions
@@ -232,7 +232,7 @@ let ProfileHeaderLabeler = ({
) : null}
<ProfileMenu profile={profile} />
</View>
<View style={[a.flex_col, a.gap_xs, a.pb_md]}>
<View style={[a.flex_col, a.gap_2xs, a.pt_2xs, a.pb_md]}>
<ProfileHeaderDisplayName profile={profile} moderation={moderation} />
<ProfileHeaderHandle profile={profile} />
</View>
@@ -225,7 +225,7 @@ let ProfileHeaderStandard = ({
) : null}
<ProfileMenu profile={profile} />
</View>
<View style={[a.flex_col, a.gap_xs, a.pb_sm]}>
<View style={[a.flex_col, a.gap_2xs, a.pt_2xs, a.pb_sm]}>
<ProfileHeaderDisplayName profile={profile} moderation={moderation} />
<ProfileHeaderHandle profile={profile} />
</View>