From e9e3db5193bc9a717989980b7bfd3a9238911d34 Mon Sep 17 00:00:00 2001 From: vladislavkeblysh <138868841+vladislavkeblysh@users.noreply.github.com> Date: Thu, 14 Dec 2023 08:52:32 +0200 Subject: [PATCH] feat: Enhancements to page (quince.master) (#578) * feat: fixed page styles --- src/discussions/common/AuthorLabel.jsx | 2 +- .../post-comments/comments/CommentsView.jsx | 2 +- src/index.scss | 15 +++++++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/discussions/common/AuthorLabel.jsx b/src/discussions/common/AuthorLabel.jsx index de673bf9..4562d39c 100644 --- a/src/discussions/common/AuthorLabel.jsx +++ b/src/discussions/common/AuthorLabel.jsx @@ -51,7 +51,7 @@ const AuthorLabel = ({ const authorName = useMemo(() => ( { const handleDefinition = useCallback((message, commentsLength) => (
diff --git a/src/index.scss b/src/index.scss index 1e2ebcf3..8a730bdf 100755 --- a/src/index.scss +++ b/src/index.scss @@ -340,6 +340,10 @@ header { .nav-item:not(:last-child){ .nav-link { border-right: 0; + + @media screen and (max-width: 567px) { + border-right: solid 1px #e9e6e4; + } } } } @@ -488,6 +492,11 @@ header { z-index: 1; } +.comment-line { + width: calc(100% - 180px); + line-height: 1; +} + .post-preview, .discussion-comments { blockquote { @@ -529,3 +538,9 @@ header { left: 50%; transform: translate(-50%, -50%); } + +.author-name { + line-height: 1; + word-break: break-all; +} +