From 26b64badedaf128ad20c3484718eb830856c0aa8 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 23 Nov 2025 06:26:04 +0000 Subject: [PATCH] Fix HTML content wrapping in description fields - Add white-space: pre-wrap to .field-value pre elements - Enable word-wrap and overflow-wrap for long HTML content - Ensures description field content wraps within window instead of overflowing horizontally --- index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.html b/index.html index be5f947..79986c9 100644 --- a/index.html +++ b/index.html @@ -250,6 +250,16 @@ text-decoration: underline; } + .field-value pre { + white-space: pre-wrap; + word-wrap: break-word; + overflow-wrap: break-word; + margin: 0; + font-family: 'Courier New', monospace; + font-size: 13px; + max-width: 100%; + } + .raw-xml { background: #1e1e1e; color: #d4d4d4;