diff --git a/src/discussions/common/AuthorLabel.jsx b/src/discussions/common/AuthorLabel.jsx index e3ea2c60..6a4e67c1 100644 --- a/src/discussions/common/AuthorLabel.jsx +++ b/src/discussions/common/AuthorLabel.jsx @@ -38,7 +38,7 @@ function AuthorLabel({ const isRetiredUser = author ? author.startsWith('retired__user') : false; - const className = classNames('d-flex align-items-center', labelColor); + const className = classNames('d-flex align-items-center mb-0.5', labelColor); const showUserNameAsLink = useShowLearnersTab() && linkToProfile && author && author !== intl.formatMessage(messages.anonymous); diff --git a/src/discussions/posts/post/PostHeader.jsx b/src/discussions/posts/post/PostHeader.jsx index a747401e..e0915861 100644 --- a/src/discussions/posts/post/PostHeader.jsx +++ b/src/discussions/posts/post/PostHeader.jsx @@ -22,11 +22,11 @@ export function PostAvatar({ const outlineColor = AvatarOutlineAndLabelColors[authorLabel]; const avatarSize = useMemo(() => { - let size = '1.75rem'; + let size = '2rem'; if (post.type === ThreadType.DISCUSSION && !fromPostLink) { size = '2.375rem'; } else if (post.type === ThreadType.QUESTION) { - size = '1.375rem'; + size = '1.5rem'; } return size; }, [post.type]); diff --git a/src/discussions/posts/post/PostLink.jsx b/src/discussions/posts/post/PostLink.jsx index 696ec2a5..5feadbc7 100644 --- a/src/discussions/posts/post/PostLink.jsx +++ b/src/discussions/posts/post/PostLink.jsx @@ -66,11 +66,10 @@ function PostLink({ { 'bg-light-300': read }, { 'post-summary-card-selected': post.id === postId }) } - style={{ height: '87px' }} >
-
+
+