fix word overflow in text file viewer (#2179)
authorAjay Bura <32841439+ajbura@users.noreply.github.com>
Sun, 26 Jan 2025 11:55:09 +0000 (22:55 +1100)
committerGitHub <noreply@github.com>
Sun, 26 Jan 2025 11:55:09 +0000 (22:55 +1100)
src/app/components/text-viewer/TextViewer.css.ts

index 1ec5647e0bf852925149e8d58ecfca5a336b6aa0..2b79fa64afb99fa866b334d3d461a516acbf7c28 100644 (file)
@@ -33,5 +33,6 @@ export const TextViewerPre = style([
   {
     padding: config.space.S600,
     whiteSpace: 'pre-wrap',
+    wordBreak: 'break-word',
   },
 ]);