fix: add space gap between modals buttons + fixed reply/post/comment sections text colors (#805)
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
/>
|
||||
)}
|
||||
|
||||
@@ -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) && (
|
||||
|
||||
Reference in New Issue
Block a user