From a23b6649c2b9a89c3ffb0ba9c113a5e241b1b1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 3 May 2026 21:08:19 +0200 Subject: [PATCH] Fix front artwork gap at right bleed edge Image was sized to trim-w (8.5 in) but the zone is trim-w + bleed (8.625 in), leaving a 0.125 in uncovered strip. width/height 100% fills the full zone, matching how back-artwork is sized. Co-Authored-By: Claude Sonnet 4.6 --- templates/cover.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates/cover.html b/templates/cover.html index a1a3e92..14c1993 100644 --- a/templates/cover.html +++ b/templates/cover.html @@ -255,10 +255,9 @@ /* ── Front cover content ────────────────────────────────── */ .front-artwork { position: absolute; - /* art fills from left trim edge (skip the right bleed) */ top: 0; left: 0; - width: var(--trim-w); - height: var(--total-h); + width: 100%; + height: 100%; object-fit: cover; }