diff --git a/src/components/comment/CommentTextBlock/index.tsx b/src/components/comment/CommentTextBlock/index.tsx index 9c9e07af..81714657 100644 --- a/src/components/comment/CommentTextBlock/index.tsx +++ b/src/components/comment/CommentTextBlock/index.tsx @@ -9,7 +9,7 @@ const CommentTextBlock: FC = ({ block }) => {
${block.content}

`, + __html: `

${block.content}

`, }} /> ); diff --git a/src/components/comment/CommentTextBlock/styles.scss b/src/components/comment/CommentTextBlock/styles.scss index 0ad9ddc4..caab6c62 100644 --- a/src/components/comment/CommentTextBlock/styles.scss +++ b/src/components/comment/CommentTextBlock/styles.scss @@ -26,10 +26,15 @@ :global(.green) { color: $wisegreen; } -} -.blank { - display: inline-flex; - height: 1em; - width: 150px; + &:last-child { + p { + &::after { + content: ''; + display: inline-flex; + height: 1em; + width: 150px; + } + } + } }