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/post-thread/PostThreadItem.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/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 99fbda6d2..5451a67dd 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -316,6 +316,7 @@ let PostThreadItemLoaded = ({ childContainerStyle={styles.contentHiderChild}> <PostAlerts modui={moderation.ui('contentView')} + size="large" includeMute style={[a.pt_2xs, a.pb_sm]} /> @@ -517,7 +518,7 @@ let PostThreadItemLoaded = ({ <LabelsOnMyPost post={post} /> <PostAlerts modui={moderation.ui('contentList')} - style={[a.pt_xs, a.pb_sm]} + style={[a.pt_2xs, a.pb_2xs]} /> {richText?.text ? ( <View style={styles.postTextContainer}> |