diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-07 21:12:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 21:12:05 +0300 |
commit | 8d80f1344df4897cfe4f754d37e654809850b794 (patch) | |
tree | e2db9b70ecd4102b4f5a134610c94e600138c027 /src/screens | |
parent | c3650962000f148619639d754d008f1da0e32ea9 (diff) | |
download | voidsky-8d80f1344df4897cfe4f754d37e654809850b794.tar.zst |
equal spacing on displayname/handle (#5636)
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderLabeler.tsx | 2 | ||||
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderStandard.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx index 8c95413a8..b0d954a92 100644 --- a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx +++ b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx @@ -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> diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index 1bdafa92f..4a2929a6e 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -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> |