diff options
author | Ollie Hsieh <renahlee@outlook.com> | 2023-04-19 18:05:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 20:05:10 -0500 |
commit | b24ba3adc93cf940eb936309ae73a2c205eaef24 (patch) | |
tree | 373337a5f364fd1d83010c33bae3d878437d4ca7 /src/view/com/profile/ProfileHeader.tsx | |
parent | 1472bd4f173a483e5f1a91514244fecaec23808f (diff) | |
download | voidsky-b24ba3adc93cf940eb936309ae73a2c205eaef24.tar.zst |
Add cursor to clickable elements (#491)
* Add cursor to clickable elements * Add cursor to clickable elements * Update per comments * Fix word wrap in notifications * Center the web login-load screen * Add hover states on web * Fix lint --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/profile/ProfileHeader.tsx')
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 101b6b833..4c232a13a 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -64,7 +64,7 @@ export const ProfileHeader = observer( <View style={[styles.buttonsLine]}> <LoadingPlaceholder width={100} height={31} style={styles.br50} /> </View> - <View style={styles.displayNameLine}> + <View> <Text type="title-2xl" style={[pal.text, styles.title]}> {sanitizeDisplayName(view.displayName || view.handle)} </Text> @@ -273,7 +273,7 @@ const ProfileHeaderLoaded = observer(function ProfileHeaderLoaded({ </DropdownButton> ) : undefined} </View> - <View style={styles.displayNameLine}> + <View> <Text testID="profileHeaderDisplayName" type="title-2xl" @@ -431,11 +431,6 @@ const styles = StyleSheet.create({ borderRadius: 50, marginLeft: 6, }, - - displayNameLine: { - // paddingLeft: 86, - // marginBottom: 14, - }, title: {lineHeight: 38}, handleLine: { |