Skip to content

Commit

Permalink
fix: added border around add comment button
Browse files Browse the repository at this point in the history
  • Loading branch information
sundasnoreen12 committed Jan 15, 2024
1 parent 6cdb37c commit 030e5c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/discussions/post-comments/comments/comment/Comment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const Comment = ({
) : (
!isClosed && isUserPrivilegedInPostingRestriction && (inlineReplies.length >= 5) && (
<Button
className="d-flex flex-grow mt-2 font-size-14 font-style font-weight-500 text-primary-500"
className="d-flex flex-grow mt-2 font-size-14 font-style font-weight-500 text-primary-500 add-comment-btn"
variant="plain"
style={{ height: '36px' }}
onClick={handleAddCommentReply}
Expand Down
4 changes: 4 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,10 @@ header {
}
}

.add-comment-btn {
border: 1px solid var(--Light-300, $light-300) !important;
}

.icon-size-24 {
width: 1.5rem !important;
height: 1.5rem !important;
Expand Down

0 comments on commit 030e5c0

Please sign in to comment.