From a1aa082ecd5f495c316c9c89fdaae80763bbec7d Mon Sep 17 00:00:00 2001 From: Tomas Roun Date: Thu, 18 Jul 2024 09:22:03 +0200 Subject: [PATCH] Fix textarea width growing beyond 100% --- src/Components/GrowingTextArea.module.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Components/GrowingTextArea.module.scss b/src/Components/GrowingTextArea.module.scss index 70ae381..7be9205 100644 --- a/src/Components/GrowingTextArea.module.scss +++ b/src/Components/GrowingTextArea.module.scss @@ -16,5 +16,6 @@ content: attr(data-value) ' '; visibility: hidden; white-space: pre-wrap; + overflow-wrap: anywhere; } }