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
This commit is contained in:
deafgod 2024-06-03 23:09:57 +02:00
parent 729a354f4c
commit 44122d0e77
No known key found for this signature in database
GPG key ID: 99E232D0EA68E81E

View file

@ -89,6 +89,7 @@ pre code {
white-space: pre-wrap;
font-size: 14px;
overflow-x: auto;
text-wrap: nowrap;
}
blockquote {