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
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

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