From 44122d0e77b777f4b6aec332fbb1b5cb6282d688 Mon Sep 17 00:00:00 2001 From: deafgod Date: Mon, 3 Jun 2024 23:09:57 +0200 Subject: [PATCH] FIX - wrapping code block lines in original.css 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 {