From 1adf4714adaa46e3b6b462dfc8f2dbe66d58ed45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez?= Date: Tue, 21 Mar 2023 07:32:09 +0100 Subject: [PATCH] fix: don't break words (fix #30) (#45) * fix: don't break words * fix: don't break words as much as possible, but when the width is not enough, will still break --------- Co-authored-by: josc146 --- src/content-script/styles.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content-script/styles.scss b/src/content-script/styles.scss index 3e8de5f..998769d 100644 --- a/src/content-script/styles.scss +++ b/src/content-script/styles.scss @@ -116,7 +116,7 @@ font-size: 15px; line-height: 1.6; border-radius: 8px; - word-break: break-all; + word-break: break-word; pre { margin-top: 10px;