style(debug): improve cipher text wrapping with overflowWrap anywhere

This commit is contained in:
Gigi
2025-10-17 12:28:43 +02:00
parent 9264245944
commit 93daabc673

View File

@@ -82,7 +82,7 @@ const Debug: React.FC = () => {
const CodeBox = ({ value }: { value: string }) => (
<pre
className="textarea"
style={{ whiteSpace: 'pre-wrap', wordBreak: 'break-all' }}
style={{ whiteSpace: 'pre-wrap', overflowWrap: 'anywhere' }}
>{value || '—'}</pre>
)