From e174badc98a1eff31cca7ca20d864805a7d67fd4 Mon Sep 17 00:00:00 2001 From: deafgod <122827520+d3af90d@users.noreply.github.com> Date: Fri, 21 Jun 2024 21:28:25 +0200 Subject: [PATCH] FIX - wrapping code block lines in original.css (#19) The lines of the code blocks of the HTML get wrapped on small/mobile screens. Adding this line make the scrolling overflow functional again. herman.css does not have this problem --- assets/original.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/original.css b/assets/original.css index 3492237..e7aad94 100644 --- a/assets/original.css +++ b/assets/original.css @@ -89,6 +89,7 @@ pre code { white-space: pre-wrap; font-size: 14px; overflow-x: auto; + text-wrap: nowrap; } blockquote {