From 5fd93fc6486cbed79d69a7e60a428038cad66683 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 17 Feb 2025 21:26:53 -0500 Subject: [PATCH] Allow line wrapping even when contiguous words are really long. The code blocks were causing horizontal scrolling on mobile. --- default_environment/stylesheet/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/default_environment/stylesheet/main.css b/default_environment/stylesheet/main.css index 1e4b4bf..00f51d2 100644 --- a/default_environment/stylesheet/main.css +++ b/default_environment/stylesheet/main.css @@ -158,6 +158,7 @@ body { .src_line { white-space: pre-wrap; + overflow-wrap: anywhere; } } }