From be6e9ea13d2f825d15ccaafb93e68621e6451c78 Mon Sep 17 00:00:00 2001 From: Josh Bairstow Date: Wed, 3 Jun 2026 15:49:20 +1000 Subject: [PATCH] refactor(marks): switch Mark from fixed to absolute positioning --- src/styles/site.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/site.css b/src/styles/site.css index a5dc573..45571a4 100644 --- a/src/styles/site.css +++ b/src/styles/site.css @@ -39,7 +39,7 @@ body:not(.dark)::before { opacity: 0.045; mix-blend-mode: normal; } --mark-rest: 0.16; } .mark { - position: fixed; pointer-events: none; z-index: 0; + position: absolute; pointer-events: none; z-index: 0; filter: var(--mark-filter-dark); opacity: var(--mark-rest); transition: opacity var(--dur-slow) var(--ease-out);