From c39d8f954e9477e3fd02387175575a59cb207890 Mon Sep 17 00:00:00 2001 From: crazywoola <100913391+crazywoola@users.noreply.github.com> Date: Mon, 19 Jun 2023 09:36:05 +0800 Subject: [PATCH] fix: word break in en and other languages (#385) --- web/app/styles/markdown.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/styles/markdown.scss b/web/app/styles/markdown.scss index a95a6e4a0e..8ae2d4cc6f 100644 --- a/web/app/styles/markdown.scss +++ b/web/app/styles/markdown.scss @@ -54,7 +54,7 @@ font-weight: 400; line-height: 1.5; word-wrap: break-word; - word-break: break-all; + word-break: break-word; user-select: text; } @@ -1042,4 +1042,4 @@ .markdown-body ::-webkit-calendar-picker-indicator { filter: invert(50%); -} \ No newline at end of file +}