From f9785de3dda3dec0f01cf8b571ff5d2e0b710e85 Mon Sep 17 00:00:00 2001 From: Ian Jones <51156018+ianjon3s@users.noreply.github.com> Date: Tue, 12 Dec 2023 15:09:00 +0000 Subject: [PATCH] fix: Long URL wrapping in editor (#2552) * fix: Long URL wrapping in editor * fix: Long URL wrapping in editor --- editor.planx.uk/src/ui/RichTextInput.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/editor.planx.uk/src/ui/RichTextInput.tsx b/editor.planx.uk/src/ui/RichTextInput.tsx index 325046ae1d..144afae381 100644 --- a/editor.planx.uk/src/ui/RichTextInput.tsx +++ b/editor.planx.uk/src/ui/RichTextInput.tsx @@ -72,6 +72,7 @@ export const RichContentContainer = styled(Box)(({ theme }) => ({ display: "flex", flexDirection: "column", justifyContent: "center", + wordBreak: "break-word", "& a": { color: "currentColor", },