diff options
Diffstat (limited to 'src/screens/Profile/Header')
-rw-r--r-- | src/screens/Profile/Header/Handle.tsx | 2 | ||||
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderStandard.tsx | 2 | ||||
-rw-r--r-- | src/screens/Profile/Header/Shell.tsx | 7 |
3 files changed, 6 insertions, 5 deletions
diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index cfbf430c4..f52b6d68e 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -23,7 +23,7 @@ export function ProfileHeaderHandle({ const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy return ( <View - style={[a.flex_row, a.gap_xs, a.align_center, {maxWidth: '100%'}]} + style={[a.flex_row, a.gap_sm, a.align_center, {maxWidth: '100%'}]} pointerEvents={disableTaps ? 'none' : isIOS ? 'auto' : 'box-none'}> <NewskieDialog profile={profile} disabled={disableTaps} /> {profile.viewer?.followedBy && !blockHide ? ( diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index 5dbf32c57..3a076ddf6 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_2xs, a.pb_sm, live ? a.pt_sm : a.pt_2xs]}> + style={[a.flex_col, a.gap_sm, 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 diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 53585c094..2b253212f 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -229,6 +229,7 @@ let ProfileHeaderShell = ({ size={live.isActive ? 88 : 90} avatar={profile.avatar} moderation={moderation.ui('avatar')} + noBorder /> {live.isActive && <LiveIndicator size="large" />} </Animated.View> @@ -260,7 +261,7 @@ export {ProfileHeaderShell} const styles = StyleSheet.create({ backBtnWrapper: { position: 'absolute', - left: 10, + left: 12, width: 30, height: 30, overflow: 'hidden', @@ -279,8 +280,8 @@ const styles = StyleSheet.create({ }, aviPosition: { position: 'absolute', - top: 110, - left: 10, + top: 104, + left: 16, }, avi: { width: 94, |