Skip to content

Commit

Permalink
equal spacing on displayname/handle (#5636)
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius authored Oct 7, 2024
1 parent c365096 commit 8d80f13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/screens/Profile/Header/ProfileHeaderLabeler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Profile/Header/ProfileHeaderStandard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 8d80f13

Please sign in to comment.