Allow line wrapping even when contiguous words are really long.

The code blocks were causing horizontal scrolling on mobile.
This commit is contained in:
Tom Alexander
2025-02-17 21:26:53 -05:00
parent 033a17e355
commit 5fd93fc648

View File

@@ -158,6 +158,7 @@ body {
.src_line { .src_line {
white-space: pre-wrap; white-space: pre-wrap;
overflow-wrap: anywhere;
} }
} }
} }