From 01164fc520313e791b7346479194ff7e8085657e Mon Sep 17 00:00:00 2001 From: ilja Date: Sat, 12 Oct 2024 18:27:14 +0200 Subject: [PATCH] Remove pre-wrap from status_body For some strange reason, after a mention a quote would be double as high as it should. Removing this "pre-wrap" seems to fix this. I'm not sure what it was exactly for, but I don't see anything break. The code blocks now don't wrap any more, but show a scroll bar, which imo is better for a code block. --- src/components/status_body/status_body.scss | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/status_body/status_body.scss b/src/components/status_body/status_body.scss index 434cb482..236d8ee1 100644 --- a/src/components/status_body/status_body.scss +++ b/src/components/status_body/status_body.scss @@ -61,9 +61,6 @@ } .text { - & > * { - white-space: pre-wrap; - } &.-single-line { white-space: nowrap; text-overflow: ellipsis;