Fix code blocks widening the mobile layout when there are unwrappable lines

This commit is contained in:
Mikko Ahlroth 2024-04-26 21:11:10 +03:00
parent 32cba3db6e
commit 6e79a34f59

View file

@ -158,6 +158,8 @@ body > footer {
/* Fix code blocks making the page wide */
pre {
white-space: pre-wrap;
word-break: normal;
overflow-wrap: anywhere;
tab-size: 4;
}