Skip to content

Commit 9db46d6

Browse files
committed
fix: add space gap between modals buttons + fixed reply/post/comment sections text colors
1 parent 5bef624 commit 9db46d6

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
@@ -225,7 +225,7 @@ const Comment = ({
225225
/>
226226
) : (
227227
<HTMLLoader
228-
cssClassName="comment-body html-loader text-break mt-14px font-style text-primary-500"
228+
cssClassName="comment-body html-loader text-break mt-14px font-style text-gray-700"
229229
componentId="comment"
230230
htmlNode={renderedBody}
231231
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
@@ -188,7 +188,7 @@ const Post = ({ handleAddResponseButton, openRestrictionDialogue }) => {
188188
postType={postType}
189189
title={title}
190190
/>
191-
<div className="d-flex mt-14px text-break font-style text-primary-500">
191+
<div className="d-flex mt-14px text-break font-style text-gray-700">
192192
<HTMLLoader htmlNode={renderedBody} componentId="post" cssClassName="html-loader w-100" testId={postId} />
193193
</div>
194194
{(topicContext || topic) && (

0 commit comments

Comments
 (0)