Fix front-overlay not covering right bleed edge
Overlay was sized to var(--trim-w) like the old artwork, leaving the right 0.125 in strip of the zone undarked. Changed to width/height 100%. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -265,8 +265,8 @@
|
|||||||
.front-overlay {
|
.front-overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0; left: 0;
|
top: 0; left: 0;
|
||||||
width: var(--trim-w);
|
width: 100%;
|
||||||
height: var(--total-h);
|
height: 100%;
|
||||||
background:
|
background:
|
||||||
/* deep vignette around all edges */
|
/* deep vignette around all edges */
|
||||||
radial-gradient(ellipse 90% 90% at 50% 50%,
|
radial-gradient(ellipse 90% 90% at 50% 50%,
|
||||||
|
|||||||
Reference in New Issue
Block a user