fix: add space gap between modals buttons + fixed reply/post/comment sections text colors (#805)

This commit is contained in:
bydawen
2026-01-28 20:43:40 +02:00
committed by GitHub
parent 4e90bbc756
commit 0d5e3b8a1c
4 changed files with 4 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ const HoverCard = ({
const actionFunction = actionHandlers[endorseIcons.action];
actionFunction();
}}
className={['endorse', 'unendorse'].includes(endorseIcons.id) ? 'text-dark-500' : 'text-success-500'}
className="text-primary"
size="sm"
alt="Endorse"
/>

View File

@@ -226,7 +226,7 @@ const Comment = ({
/>
) : (
<HTMLLoader
cssClassName="comment-body html-loader text-break mt-14px font-style"
cssClassName="comment-body html-loader text-break mt-14px font-style text-gray-700"
componentId="comment"
htmlNode={renderedBody}
testId={id}

View File

@@ -173,7 +173,7 @@ const Reply = ({ responseId }) => {
<HTMLLoader
componentId="reply"
htmlNode={renderedBody}
cssClassName="html-loader text-break font-style text-primary-500"
cssClassName="html-loader text-break font-style text-gray-700"
testId={id}
/>
)}

View File

@@ -189,7 +189,7 @@ const Post = ({ handleAddResponseButton, openRestrictionDialogue }) => {
title={title}
postUsers={postUsers}
/>
<div className="d-flex mt-14px text-break font-style">
<div className="d-flex mt-14px text-break font-style text-gray-700">
<HTMLLoader htmlNode={renderedBody} componentId="post" cssClassName="html-loader w-100" testId={postId} />
</div>
{(topicContext || topic) && (