From 24c140736d7770bab7648091cf9d7b9bb1f006e3 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Sun, 1 Sep 2024 22:00:32 +0900 Subject: [PATCH] fix div text overflow from breaking columns --- public/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/style.css b/public/style.css index ee1c4d518..125d9f4cf 100644 --- a/public/style.css +++ b/public/style.css @@ -5452,4 +5452,8 @@ body:not(.movingUI) .drawer-content.maximized { content: 'No icons found'; color: var(--SmartThemeBodyColor); opacity: 0.7; +} + +#advanced-formatting-button div[contenteditable="true"] { + overflow-wrap: anywhere; } \ No newline at end of file