File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const styles = createStyleSheet({
40
40
marginVertical : 2 ,
41
41
} ,
42
42
icon : {
43
- marginLeft : 16 ,
43
+ marginLeft : 24 ,
44
44
} ,
45
45
signedOutText : {
46
46
fontStyle : 'italic' ,
@@ -113,22 +113,20 @@ export default function AccountItem(props: Props): Node {
113
113
) }
114
114
</ View >
115
115
{ notificationReport . problems . length > 0 && (
116
- < Pressable hitSlop = { 12 } onPress = { handlePressNotificationWarning } >
116
+ < Pressable style = { styles . icon } hitSlop = { 12 } onPress = { handlePressNotificationWarning } >
117
117
{ ( { pressed } ) => (
118
118
< IconAlertTriangle
119
- style = { styles . icon }
120
119
size = { 24 }
121
120
color = { pressed ? Color ( kWarningColor ) . fade ( 0.5 ) . toString ( ) : kWarningColor }
122
121
/>
123
122
) }
124
123
</ Pressable >
125
124
) }
126
125
{ ! showDoneIcon ? (
127
- < Pressable hitSlop = { 12 } onPress = { ( ) => props . onRemove ( props . account ) } >
126
+ < Pressable style = { styles . icon } hitSlop = { 12 } onPress = { ( ) => props . onRemove ( props . account ) } >
128
127
{ ( { pressed } ) => (
129
128
< IconTrash
130
129
size = { 24 }
131
- style = { styles . icon }
132
130
color = { pressed ? Color ( 'crimson' ) . fade ( 0.5 ) . toString ( ) : 'crimson' }
133
131
/>
134
132
) }
You can’t perform that action at this time.
0 commit comments