From 68ff4bed58b4cd1f4080cf95e145403b01d63fb4 Mon Sep 17 00:00:00 2001
From: Runxi Yu <me@runxiyu.org>
Date: Sat, 15 Feb 2025 09:34:23 +0800
Subject: [PATCH] style.css: break-word for #readme

Some browsers (chromium and webkit ones, it seems) don't break lines
when they encounter a long token without spaces, such as long URLs. This
causes the hbox to be overfull and it'll start scrolling which is
annoying.

---
 static/style.css | 5 +++++

diff --git a/static/style.css b/static/style.css
index f5e82ead2f09e81e0b1d76de02bd8d7b1fbe86e9..e49a705014c315ee1fdd5f5fc17d6b72956b0dd1 100644
--- a/static/style.css
+++ b/static/style.css
@@ -102,6 +102,11 @@ 	border-radius: 2px;
 	padding: 2px;
 }
 
+/* Readme word breaks to avoid overfull hboxes */
+#readme {
+	word-break: break-word;
+}
+
 /* Table styles */
 table {
 	border: var(--lighter-border-color) solid 1px;

-- 
2.48.1