1
Fork 0
mirror of https://github.com/RGBCube/cinny synced 2025-08-01 09:27:46 +00:00

fix word overflow in text file viewer (#2179)

This commit is contained in:
Ajay Bura 2025-01-26 22:55:09 +11:00 committed by GitHub
parent 8e4475bb56
commit 42e6e6355d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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