diff options
author | Elijah Seed-Arita <elijaharita@gmail.com> | 2025-07-29 14:20:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-29 16:20:33 -0500 |
commit | 332dbc1bb4632e9fd1ffed6ea8566b8df8984f64 (patch) | |
tree | 94e0621df383a9bcc101ea29c713d81175bf2d9b /src | |
parent | bc78fb224e2f0920c5513f320d024975b88e9ff2 (diff) | |
download | voidsky-332dbc1bb4632e9fd1ffed6ea8566b8df8984f64.tar.zst |
fix: small profile followup fixes (#8735)
* fix: small profile followup fixes * fix: change platform-specific compensation for profileHeaderDisplayName marginBottom to target all native * fix: apply suggestion for consistent cross-platform profile username margin
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderStandard.tsx | 3 | ||||
-rw-r--r-- | src/screens/Profile/Header/Shell.tsx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index 3a076ddf6..2f61ba4df 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -251,7 +251,7 @@ let ProfileHeaderStandard = ({ <ProfileMenu profile={profile} /> </View> <View - style={[a.flex_col, a.gap_sm, a.pb_sm, live ? a.pt_sm : a.pt_2xs]}> + style={[a.flex_col, a.gap_xs, a.pb_sm, live ? a.pt_sm : a.pt_2xs]}> <View style={[a.flex_row, a.align_center, a.gap_xs, a.flex_1]}> <Text emoji @@ -261,6 +261,7 @@ let ProfileHeaderStandard = ({ gtMobile ? a.text_4xl : a.text_3xl, a.self_start, a.font_heavy, + a.leading_tight, ]}> {sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 2b253212f..27962ba05 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -281,7 +281,7 @@ const styles = StyleSheet.create({ aviPosition: { position: 'absolute', top: 104, - left: 16, + left: 10, }, avi: { width: 94, |