Skip to content

Commit b4dcaca

Browse files
committed
fix: remove primary color from discussion post and messages text
1 parent 5defe5c commit b4dcaca

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

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

src/discussions/posts/post/PostHeader.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const PostHeader = ({
126126
</div>
127127
) : (
128128
<h5
129-
className="mb-0 font-style text-primary-500"
129+
className="mb-0 font-style"
130130
style={{ lineHeight: '21px' }}
131131
aria-level="1"
132132
tabIndex="-1"

0 commit comments

Comments
 (0)