From fa6b3aab731bfc9ba8cfd416b4a8c14a77555d70 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 9 Feb 2026 09:44:38 -0500 Subject: [PATCH] Prevent long inline code from blowing out page width on mobile. --- remarkbox/static/css/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/remarkbox/static/css/common.css b/remarkbox/static/css/common.css index c6f4a6d..ed92334 100644 --- a/remarkbox/static/css/common.css +++ b/remarkbox/static/css/common.css @@ -207,6 +207,11 @@ p.whats-next { margin-block: 16px; } +.node-data { + overflow-wrap: anywhere; + min-width: 0; +} + .preview p, .node p { margin-top: 0;