From d95ab2c168290099dcf4092980050ef411febac6 Mon Sep 17 00:00:00 2001 From: infiinte-persistence Date: Tue, 9 Jun 2020 09:20:33 +0200 Subject: [PATCH] Fix [ff0cc861] that broke regular word-wrap in comments. Now, both regular text and "long text without spaces" will wrap correctly. --- ui/scss/component/_comments.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/scss/component/_comments.scss b/ui/scss/component/_comments.scss index 7332963b4..a4b56bcde 100644 --- a/ui/scss/component/_comments.scss +++ b/ui/scss/component/_comments.scss @@ -57,8 +57,7 @@ .comment__message { white-space: pre-line; - word-wrap: break-word; - word-break: break-all; + word-break: break-word; margin-top: var(--spacing-s); }