From f8daf7abee67a177d59f27d46b78f1ed39d27d27 Mon Sep 17 00:00:00 2001 From: vladislavkeblysh Date: Sat, 25 Nov 2023 15:09:46 +0200 Subject: [PATCH] feat: fixed page styles --- src/discussions/common/AuthorLabel.jsx | 3 +-- src/index.scss | 10 ++++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/discussions/common/AuthorLabel.jsx b/src/discussions/common/AuthorLabel.jsx index 93fa0c9ce..0e7e19721 100644 --- a/src/discussions/common/AuthorLabel.jsx +++ b/src/discussions/common/AuthorLabel.jsx @@ -51,13 +51,12 @@ const AuthorLabel = ({ const authorName = ( {isRetiredUser ? '[Deactivated]' : author} diff --git a/src/index.scss b/src/index.scss index 1692beaa5..3b621ae8e 100755 --- a/src/index.scss +++ b/src/index.scss @@ -345,10 +345,6 @@ header { } } } - - button { - font-family: inherit; - } } .breadcrumb-menu { @@ -496,6 +492,7 @@ header { .comment-line { width: calc(100% - 180px); + line-height: 1; } .post-preview, @@ -522,3 +519,8 @@ header { font-size: 18px; line-height: 28px; } + +.author-name { + line-height: 1; + word-break: break-all; +}