From c1b17d8d9983aa8902fcd64a2cd99c8c1e580b5a Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Apr 2022 09:51:39 +0300 Subject: [PATCH] fix: do not wrap code blocks --- client/src/app.scss | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/app.scss b/client/src/app.scss index 11c62dc8f322..8923297f1738 100644 --- a/client/src/app.scss +++ b/client/src/app.scss @@ -160,10 +160,7 @@ main { } pre { - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; + overflow-x: auto; word-wrap: break-word; }