From 7660539689dcb5f12fcb24cdeb10884adff21db6 Mon Sep 17 00:00:00 2001 From: Joel Date: Mon, 29 May 2023 14:05:59 +0800 Subject: [PATCH] fix: markdown code always show scrollbar (#237) --- web/app/styles/markdown.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/styles/markdown.scss b/web/app/styles/markdown.scss index ac19b9d76e..24bfb98195 100644 --- a/web/app/styles/markdown.scss +++ b/web/app/styles/markdown.scss @@ -779,7 +779,7 @@ max-width: 100%; padding: 0; margin: 0; - overflow-x: scroll; + overflow-x: auto; line-height: inherit; word-wrap: normal; background-color: transparent;