Skip to content

Commit b8028af

Browse files
committed
fix: add space gap between modals buttons + fixed reply/post/comment sections text colors
1 parent 231c15a commit b8028af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/discussions/common/HoverCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const HoverCard = ({
7575
const actionFunction = actionHandlers[endorseIcons.action];
7676
actionFunction();
7777
}}
78-
className={['endorse', 'unendorse'].includes(endorseIcons.id) ? 'text-dark-500' : 'text-success-500'}
78+
className="text-primary"
7979
size="sm"
8080
alt="Endorse"
8181
/>

src/discussions/post-comments/comments/comment/Comment.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ const Comment = ({
226226
/>
227227
) : (
228228
<HTMLLoader
229-
cssClassName="comment-body html-loader text-break mt-14px font-style text-primary-500"
229+
cssClassName="comment-body html-loader text-break mt-14px font-style text-gray-700"
230230
componentId="comment"
231231
htmlNode={renderedBody}
232232
testId={id}

src/discussions/post-comments/comments/comment/Reply.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const Reply = ({ responseId }) => {
168168
<HTMLLoader
169169
componentId="reply"
170170
htmlNode={renderedBody}
171-
cssClassName="html-loader text-break font-style text-primary-500"
171+
cssClassName="html-loader text-break font-style text-gray-700"
172172
testId={id}
173173
/>
174174
)}

src/discussions/posts/post/Post.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ const Post = ({ handleAddResponseButton, openRestrictionDialogue }) => {
189189
title={title}
190190
postUsers={postUsers}
191191
/>
192-
<div className="d-flex mt-14px text-break font-style text-primary-500">
192+
<div className="d-flex mt-14px text-break font-style text-gray-700">
193193
<HTMLLoader htmlNode={renderedBody} componentId="post" cssClassName="html-loader w-100" testId={postId} />
194194
</div>
195195
{(topicContext || topic) && (

0 commit comments

Comments
 (0)