From 064f4c0baf12252e50cb95cd82eb45a1fffd8eae Mon Sep 17 00:00:00 2001 From: Eric Feng Date: Tue, 7 Apr 2026 13:28:16 -0700 Subject: [PATCH] fix: prevent live view scrollbar flicker on mobile viewport Use `overflow: hidden` instead of `overflow-y: auto` to eliminate scrollbar flicker in the live view on small viewports. Co-Authored-By: Claude Opus 4.6 (1M context) --- images/chromium-headful/client/src/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/chromium-headful/client/src/app.vue b/images/chromium-headful/client/src/app.vue index 20f3c8e8..53166109 100644 --- a/images/chromium-headful/client/src/app.vue +++ b/images/chromium-headful/client/src/app.vue @@ -127,7 +127,7 @@ @media only screen and (max-width: 1024px) { html, body { - overflow-y: auto !important; + overflow: hidden !important; width: auto !important; height: auto !important; }