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
This commit is contained in:
deafgod 2024-06-21 21:28:25 +02:00 committed by GitHub
parent e7b875a1fa
commit e174badc98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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