From dbf8ab608582bf807c3edf24f62fbe3201cc3fa6 Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 11 Jun 2026 08:37:42 -0400 Subject: [PATCH] =?UTF-8?q?Daily=20Word:=20enlarge=20the=20=E2=86=B5=20Ent?= =?UTF-8?q?er=20glyph=20to=20match=20the=20=E2=8C=AB=20backspace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The return arrow renders smaller than the backspace glyph at the same font size; bump it so the two controls look balanced. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/src/lib/components/WordGame.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/WordGame.svelte b/frontend/src/lib/components/WordGame.svelte index 6b0053e..fc7812c 100644 --- a/frontend/src/lib/components/WordGame.svelte +++ b/frontend/src/lib/components/WordGame.svelte @@ -261,7 +261,7 @@ .key:active { transform: translateY(2px); box-shadow: 0 0 0 rgba(0, 0, 0, 0); background: var(--bg); } .krow .key { width: var(--kw); height: 50px; } .controls .key { width: 100%; height: 100%; font-size: 1.3rem; } - .controls .enter { background: var(--accent); border-color: var(--accent); color: #fff; + .controls .enter { background: var(--accent); border-color: var(--accent); color: #fff; font-size: 1.75rem; box-shadow: 0 2px 0 var(--accent-deep), 0 3px 6px rgba(0, 131, 173, 0.18); } .key.correct { background: #4a9d6e; border-color: #4a9d6e; color: #fff; box-shadow: 0 2px 0 #3a7d56; } .key.present { background: #d8b24a; border-color: #d8b24a; color: #fff; box-shadow: 0 2px 0 #b8943a; }