From 0036b6badcfc7c5fda08981952004194f3f75c00 Mon Sep 17 00:00:00 2001 From: dirtydishes Date: Mon, 29 Dec 2025 23:21:03 -0500 Subject: [PATCH] Fix list scroll anchoring Make tape lists fixed height with stable scroll gutters and disable overflow anchoring to prevent page scroll drift. --- apps/web/app/globals.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/web/app/globals.css b/apps/web/app/globals.css index f519407..3a6c3b3 100644 --- a/apps/web/app/globals.css +++ b/apps/web/app/globals.css @@ -365,9 +365,11 @@ h1 { .list { display: grid; gap: 14px; - max-height: 480px; + height: 480px; overflow: auto; padding-right: 6px; + overflow-anchor: none; + scrollbar-gutter: stable; } .row { @@ -717,6 +719,10 @@ h1 { width: 100%; max-height: none; } + + .list { + height: 360px; + } } @media (max-width: 1100px) {