Skip to content

Commit 726f9ce

Browse files
committed
fix: remove primary color from discussion post and messages text
1 parent 3e1c953 commit 726f9ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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"
229229
componentId="comment"
230230
htmlNode={renderedBody}
231231
testId={id}

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">
192192
<HTMLLoader htmlNode={renderedBody} componentId="post" cssClassName="html-loader w-100" testId={postId} />
193193
</div>
194194
{(topicContext || topic) && (

src/discussions/posts/post/PostHeader.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const PostHeader = ({
119119
</div>
120120
) : (
121121
<h5
122-
className="mb-0 font-style text-primary-500"
122+
className="mb-0 font-style"
123123
style={{ lineHeight: '21px' }}
124124
aria-level="1"
125125
tabIndex="-1"

0 commit comments

Comments
 (0)