diff --git a/src/discussions/common/AuthorLabel.jsx b/src/discussions/common/AuthorLabel.jsx index b694e0570..0e7e19721 100644 --- a/src/discussions/common/AuthorLabel.jsx +++ b/src/discussions/common/AuthorLabel.jsx @@ -51,7 +51,7 @@ const AuthorLabel = ({ const authorName = ( (
diff --git a/src/index.scss b/src/index.scss index 9720906f7..3b621ae8e 100755 --- a/src/index.scss +++ b/src/index.scss @@ -338,6 +338,10 @@ header { .nav-item:not(:last-child){ .nav-link { border-right: 0; + + @media screen and (max-width: 567px) { + border-right: solid 1px #e9e6e4; + } } } } @@ -486,6 +490,11 @@ header { z-index: 1; } +.comment-line { + width: calc(100% - 180px); + line-height: 1; +} + .post-preview, .discussion-comments { blockquote { @@ -510,3 +519,8 @@ header { font-size: 18px; line-height: 28px; } + +.author-name { + line-height: 1; + word-break: break-all; +}