Просмотр исходного кода

update PageComment.module.scss

jam411 3 лет назад
Родитель
Сommit
2bd3170e3f
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/app/src/components/PageComment.tsx

+ 3 - 1
packages/app/src/components/PageComment.tsx

@@ -20,6 +20,8 @@ import { CommentEditorLazyRenderer } from './PageComment/CommentEditorLazyRender
 import { DeleteCommentModal } from './PageComment/DeleteCommentModal';
 import { ReplyComments } from './PageComment/ReplyComments';
 
+import styles from './PageComment.module.scss';
+
 type Props = {
   pageId?: Nullable<string>
   isReadOnly: boolean,
@@ -157,7 +159,7 @@ export const PageComment: FC<Props> = memo((props:Props): JSX.Element => {
 
   return (
     <>
-      <div className="page-comments-row comment-list">
+      <div className={`${styles['page-comment-module']} page-comments-row comment-list`}>
         <div className="container-lg">
           <div className="page-comments">
             <h2 className={commentTitleClasses}><i className="icon-fw icon-bubbles"></i>Comments</h2>