From 8454330a0b301ebc6ad77cfee4c87b897ade3b70 Mon Sep 17 00:00:00 2001 From: DocFast Bot Date: Sun, 15 Feb 2026 10:46:05 +0000 Subject: [PATCH] fix(BUG-032): force flex display on code-section in mobile media query --- public/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/index.html b/public/index.html index 0bfeeaf..d529ad3 100644 --- a/public/index.html +++ b/public/index.html @@ -165,6 +165,9 @@ html, body { .code-section { max-width: calc(100vw - 32px) !important; overflow: hidden !important; + display: flex !important; + flex-direction: column !important; + white-space: normal !important; } .code-block { overflow-x: hidden !important;