From f91fdaa9e9d1369830d5e24d60062108c3d2da91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 3 May 2026 20:13:48 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20back=20cover=20artwork=20scaling=20?= =?UTF-8?q?=E2=80=94=20use=20explicit=20width/height=20instead=20of=20inse?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit object-fit: cover on requires explicit dimensions; inset:0 alone does not force the element size in Chromium. Mirrors the same approach already used for .front-artwork. Co-Authored-By: Claude Sonnet 4.6 --- templates/cover.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/cover.html b/templates/cover.html index 6299182..a1a3e92 100644 --- a/templates/cover.html +++ b/templates/cover.html @@ -195,7 +195,9 @@ /* Optional back cover artwork */ .back-artwork { position: absolute; - inset: 0; + top: 0; left: 0; + width: 100%; + height: 100%; object-fit: cover; opacity: 0.35; }