tangled
alpha
login
or
join now
ansxor.ca
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
1
fork
atom
Bluesky app fork with some witchin' additions 💫
1
fork
atom
overview
issues
pulls
pipelines
Enlarge avatars in the notifications
Paul Frazee
3 years ago
27ee550d
bda32c1c
+5
-4
1 changed file
expand all
collapse all
unified
split
src
view
com
notifications
FeedItem.tsx
+5
-4
src/view/com/notifications/FeedItem.tsx
···
133
133
<View style={styles.layout}>
134
134
<View style={styles.layoutIcon}>
135
135
{icon === 'HeartIconSolid' ? (
136
136
-
<HeartIconSolid size={26} style={[styles.icon, ...iconStyle]} />
136
136
+
<HeartIconSolid size={28} style={[styles.icon, ...iconStyle]} />
137
137
) : (
138
138
<FontAwesomeIcon
139
139
icon={icon}
140
140
-
size={22}
140
140
+
size={24}
141
141
style={[styles.icon, ...iconStyle]}
142
142
/>
143
143
)}
···
146
146
<View style={styles.avis}>
147
147
{authors.slice(0, MAX_AUTHORS).map(author => (
148
148
<Link
149
149
-
style={{marginRight: 3}}
149
149
+
style={{marginRight: 5}}
150
150
key={author.href}
151
151
href={author.href}
152
152
title={`@${author.handle}`}>
153
153
<UserAvatar
154
154
-
size={30}
154
154
+
size={35}
155
155
displayName={author.displayName}
156
156
handle={author.handle}
157
157
avatar={author.avatar}
···
241
241
layoutIcon: {
242
242
width: 60,
243
243
alignItems: 'flex-end',
244
244
+
paddingTop: 2,
244
245
},
245
246
icon: {
246
247
marginRight: 10,