From 7e4d3e2cd98b464c50abd4d156afdbd0997502ec Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 11 Jun 2026 09:51:14 -0400 Subject: [PATCH] Word Search: bolder in-game theme title + cell letters scale with cell size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per field feedback + Codex. * In-game theme title bigger and weighted (flat → title): 1.6rem/600 desktop, 1.5rem mobile. * Cell letters now scale to ~42% of the cell (container-query units, grid as the inline-size query container) so the letter-to-spacing ratio is uniform across sizes. Large is preserved (its current ratio ≈ 0.42); Small/Med letters grow to match, so Small is the easiest to read. @supports-guarded with a clamp() fallback for browsers without container-query units. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/src/lib/components/WordSearchGame.svelte | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/components/WordSearchGame.svelte b/frontend/src/lib/components/WordSearchGame.svelte index d62feae..5a4a515 100644 --- a/frontend/src/lib/components/WordSearchGame.svelte +++ b/frontend/src/lib/components/WordSearchGame.svelte @@ -191,7 +191,8 @@