diff options
author | deafgod <122827520+d3af90d@users.noreply.github.com> | 2024-06-21 21:28:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 16:28:25 -0300 |
commit | e174badc98a1eff31cca7ca20d864805a7d67fd4 (patch) | |
tree | 5a823abe94b97afc33685b467bbe6efbb916144b | |
parent | e7b875a1fabbd6f5ca13b76cca994b606b1da593 (diff) | |
download | hugo-bearcub-e174badc98a1eff31cca7ca20d864805a7d67fd4.tar.gz hugo-bearcub-e174badc98a1eff31cca7ca20d864805a7d67fd4.tar.bz2 |
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
-rw-r--r-- | assets/original.css | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |