Fix back cover artwork scaling — use explicit width/height instead of inset

object-fit: cover on <img> 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 <noreply@anthropic.com>
This commit is contained in:
2026-05-03 20:13:48 +02:00
parent 4cc08bcad6
commit f91fdaa9e9
+3 -1
View File
@@ -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;
}