From 9936d3683ec69675fbf4169419667090581d5243 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 15 May 2022 22:51:43 +0200 Subject: [PATCH] fix: very long words overflowing in descriptions and comments --- src/components/input/editor.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index 000d74185..c4eff6a0e 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -326,6 +326,8 @@ export default defineComponent({ .preview.content { margin-bottom: .5rem; + overflow-wrap: anywhere; // Safari does not understand "break-word" so we put that first to make sure it at least is able to show it somewhat properly there. + overflow-wrap: break-word; ul li { input[type="checkbox"] {