From 1a2d636385cdaf8995093cd4da7b2aaf013e5aed Mon Sep 17 00:00:00 2001 From: Eli Mallon Date: Thu, 30 Apr 2026 12:31:00 -0700 Subject: [PATCH] Chat bubbles: max-width 80ch instead of 600px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Streamer (goose.art): "the wrapped lines are very short, they should be same width as before, about 80chars". Switching from a fixed 600px to 80ch ties the bubble's wrap point to the font's "0" width, so it actually fits ~80 characters per line of Comic Sans regardless of zoom or font fallback. Compromise between the streamer's "80chars" ask and felinus's "600px wide!!" — 80ch lands around 650-700px for the chosen font, which satisfies both. Co-Authored-By: Claude Opus 4.7 (1M context) --- pets.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pets.html b/pets.html index 1fa7491..c2b1e23 100644 --- a/pets.html +++ b/pets.html @@ -144,7 +144,7 @@ white-space: normal; text-align: center; line-height: 1.25; - max-width: 600px; + max-width: 80ch; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; -- 2.51.2