From 42e6e6355de71d541f33427e8337efaf9d78e1f6 Mon Sep 17 00:00:00 2001 From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Sun, 26 Jan 2025 22:55:09 +1100 Subject: [PATCH] fix word overflow in text file viewer (#2179) --- src/app/components/text-viewer/TextViewer.css.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/components/text-viewer/TextViewer.css.ts b/src/app/components/text-viewer/TextViewer.css.ts index 1ec5647e..2b79fa64 100644 --- a/src/app/components/text-viewer/TextViewer.css.ts +++ b/src/app/components/text-viewer/TextViewer.css.ts @@ -33,5 +33,6 @@ export const TextViewerPre = style([ { padding: config.space.S600, whiteSpace: 'pre-wrap', + wordBreak: 'break-word', }, ]);