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>
This commit is contained in:
parent
1472bd4f17
commit
b24ba3adc9
10 changed files with 184 additions and 142 deletions
|
@ -48,7 +48,6 @@ export function ProfileCard({
|
|||
]}
|
||||
href={`/profile/${handle}`}
|
||||
title={handle}
|
||||
noFeedback
|
||||
asAnchor>
|
||||
<View style={styles.layout}>
|
||||
<View style={styles.layoutAvi}>
|
||||
|
|
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue