From 62f66735a35ed2d025dac24024128540090aeee0 Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Mon, 22 Jun 2026 12:55:06 +0200 Subject: [PATCH] fix(ui): nudge the rack blank star up a pixel By eye the centred star still read a hair low; subtract 1px from its top offset (top: calc(0.5% - 1px)). --- ui/src/game/Rack.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/game/Rack.svelte b/ui/src/game/Rack.svelte index 98ac3c4..ec81591 100644 --- a/ui/src/game/Rack.svelte +++ b/ui/src/game/Rack.svelte @@ -139,11 +139,11 @@ font-weight: 600; } /* Erudit's blank ("звёздочка") shows its star horizontally centred on the otherwise empty - tile face; the small top offset centres its ink against the neighbouring letters' block - (it is slightly larger than them so it reads). */ + tile face; the top offset centres its ink against the neighbouring letters' block, nudged + up a pixel to sit right by eye (it is slightly larger than them so it reads). */ .star { position: absolute; - top: 0.5%; + top: calc(0.5% - 1px); left: 0; right: 0; text-align: center;