From cbfca36e689e3e3701456b655718f6c8f3417487 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 28 Aug 2026 08:27:13 -0400 Subject: [PATCH] Drop card sprite below the ghost number - .card__art gets 36px top padding so the sprite centres in the space below the dex number instead of colliding with it; min-height raised to keep short cards showing the full sprite; spot glow moved down to match Co-Authored-By: Claude Sonnet 5 --- src/styles/layout.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/styles/layout.css b/src/styles/layout.css index b001bc2..9c8dc92 100644 --- a/src/styles/layout.css +++ b/src/styles/layout.css @@ -444,7 +444,7 @@ } .card__spot { position: absolute; - top: 14px; + top: 48px; left: 50%; width: 128px; height: 128px; @@ -461,9 +461,10 @@ position: relative; z-index: 1; flex: 1 1 auto; - min-height: 124px; + min-height: 152px; + padding-top: 36px; /* drop the sprite clear of the ghost number */ display: grid; - place-items: center; /* centre the sprite in the card's upper area */ + place-items: center; /* centre the sprite in the space that's left */ } .card__art .sprite { width: 116px;