about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-10-07 21:12:05 +0300
committerGitHub <noreply@github.com>2024-10-07 21:12:05 +0300
commit8d80f1344df4897cfe4f754d37e654809850b794 (patch)
treee2db9b70ecd4102b4f5a134610c94e600138c027
parentc3650962000f148619639d754d008f1da0e32ea9 (diff)
downloadvoidsky-8d80f1344df4897cfe4f754d37e654809850b794.tar.zst
equal spacing on displayname/handle (#5636)
-rw-r--r--src/screens/Profile/Header/ProfileHeaderLabeler.tsx2
-rw-r--r--src/screens/Profile/Header/ProfileHeaderStandard.tsx2
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>