From e62b947c425ff124d7f62adc3162f33bb6b00e05 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Sun, 2 Feb 2025 14:07:15 +0100 Subject: [PATCH] Break words to prevent overflow Prefer breaking words instead of overflowing the containers they are inside of. This prevents the site from scrolling to the right on extraordinarily narrow screens. --- web/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/web/style.css b/web/style.css index 2910b26..1300097 100644 --- a/web/style.css +++ b/web/style.css @@ -40,6 +40,7 @@ textarea:not([rows]) { html { color-scheme: light dark; font-family: sans-serif; + overflow-wrap: break-word; scrollbar-gutter: stable; }