diff options
author | Eric Bailey <git@esb.lol> | 2024-09-24 20:10:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 20:10:13 -0500 |
commit | b38d4697b7a42a5e4c48d86a6528a20ace9c034e (patch) | |
tree | d8f28c858044d45a15aaab741b668e38f8353528 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 2429d5d1ae51fa21d46970263fa581fd2eb19cdd (diff) | |
download | voidsky-b38d4697b7a42a5e4c48d86a6528a20ace9c034e.tar.zst |
[Neue] Post avi, `PostMeta` cleanup (#5450)
* Support emoji in text with custom font * Add emoji support to elements that need it * Remove unused file causing lint failure * Add web only link variant * Refactor PostMeta * Reduce avi size in feeds * Fix alignment, emoji, in PostMeta * Smaller avis in notifications * Shrink post placeholder avi * Handle the handle again * Link cleanup * Cleanup unused props * Fix text wrapping in timestamp * Fix underline color * Tighten up spacing * Web only whiteSpace
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 3fb2309b9..ead9df116 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -558,18 +558,14 @@ let PostThreadItemLoaded = ({ <PostMeta author={post.author} moderation={moderation} - authorHasWarning={!!post.author.labels?.length} timestamp={post.indexedAt} postHref={postHref} showAvatar={isThreadedChild} avatarModeration={moderation.ui('avatar')} - avatarSize={28} - displayNameType="md-bold" - displayNameStyle={isThreadedChild && s.ml2} + avatarSize={24} style={ isThreadedChild && { - alignItems: 'center', - paddingBottom: isWeb ? 5 : 2, + paddingBottom: isWeb ? 5 : 4, } } /> |