From b5133147d580759e4494ed47451e37f69da0e239 Mon Sep 17 00:00:00 2001 From: vladislavkeblysh <138868841+vladislavkeblysh@users.noreply.github.com> Date: Thu, 14 Dec 2023 08:52:06 +0200 Subject: [PATCH] feat: Enhancements to page (palm.master) (#576) * feat: fixed page styles --- src/discussions/common/AuthorLabel.jsx | 2 +- .../post-comments/comments/CommentsView.jsx | 2 +- src/index.scss | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/discussions/common/AuthorLabel.jsx b/src/discussions/common/AuthorLabel.jsx index b694e057..0e7e1972 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 9720906f..3b621ae8 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; +}