diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-05-29 21:33:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 05:33:18 +0100 |
commit | 5fe1e171f0c9e4c9fa3f1b55bf231bdfd3662126 (patch) | |
tree | da030f741a8a9a459256891a07f222550b203b87 /src/view/com/posts/FeedItem.tsx | |
parent | 4cc55f05c2f8dda903733e5a7bb1442a107d116d (diff) | |
download | voidsky-5fe1e171f0c9e4c9fa3f1b55bf231bdfd3662126.tar.zst |
Improve the visual clarity of labels on profiles and posts (#4262)
* Update PostAlerts rendering to show the avi of the labeler rather than the display name; also add size variations * Update ProfileHeaderAlerts to match PostAlerts behavior
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index 1a5f954e3..70f63427d 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -368,7 +368,7 @@ let PostContent = ({ modui={moderation.ui('contentList')} ignoreMute childContainerStyle={styles.contentHiderChild}> - <PostAlerts modui={moderation.ui('contentList')} style={[a.pb_xs]} /> + <PostAlerts modui={moderation.ui('contentList')} style={[a.py_2xs]} /> {richText.text ? ( <View style={styles.postTextContainer}> <RichText |