|
@@ -127,6 +127,7 @@ export const PageComment: FC<Props> = memo((props:Props): JSX.Element => {
|
|
|
return (
|
|
return (
|
|
|
<>
|
|
<>
|
|
|
<div className="page-comments-row comment-list mt-5 py-4 d-edit-none d-print-none">
|
|
<div className="page-comments-row comment-list mt-5 py-4 d-edit-none d-print-none">
|
|
|
|
|
+ {/* TODO: container-lg expected global import, _override.scss */}
|
|
|
<div className="container-lg">
|
|
<div className="container-lg">
|
|
|
<div className={`${styles['page-comments']} page-comments`}>
|
|
<div className={`${styles['page-comments']} page-comments`}>
|
|
|
<h2 className={commentTitleClasses}><i className="icon-fw icon-bubbles"></i>Comments</h2>
|
|
<h2 className={commentTitleClasses}><i className="icon-fw icon-bubbles"></i>Comments</h2>
|
|
@@ -169,6 +170,7 @@ export const PageComment: FC<Props> = memo((props:Props): JSX.Element => {
|
|
|
return (
|
|
return (
|
|
|
<>
|
|
<>
|
|
|
<div className="page-comments-row comment-list mt-5 py-4 d-edit-none d-print-none">
|
|
<div className="page-comments-row comment-list mt-5 py-4 d-edit-none d-print-none">
|
|
|
|
|
+ {/* TODO: container-lg expected global import, _override.scss */}
|
|
|
<div className="container-lg">
|
|
<div className="container-lg">
|
|
|
<div className={`${styles['page-comments']} page-comments`}>
|
|
<div className={`${styles['page-comments']} page-comments`}>
|
|
|
<h2 className={commentTitleClasses}><i className="icon-fw icon-bubbles"></i>Comments</h2>
|
|
<h2 className={commentTitleClasses}><i className="icon-fw icon-bubbles"></i>Comments</h2>
|
|
@@ -194,7 +196,7 @@ export const PageComment: FC<Props> = memo((props:Props): JSX.Element => {
|
|
|
outline
|
|
outline
|
|
|
color="secondary"
|
|
color="secondary"
|
|
|
size="sm"
|
|
size="sm"
|
|
|
- className="btn-comment-reply"
|
|
|
|
|
|
|
+ className={`${styles['btn-comment-reply']} btn-comment-reply`}
|
|
|
onClick={() => {
|
|
onClick={() => {
|
|
|
setShowEditorIds(previousState => new Set(previousState.add(comment._id)));
|
|
setShowEditorIds(previousState => new Set(previousState.add(comment._id)));
|
|
|
}}
|
|
}}
|