From 15e6fda5acbf30958c1e0e13ae9e823f01c793c6 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 19 Feb 2026 15:08:16 -0600 Subject: [PATCH] Fix broken scrolling on non-map pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove overly aggressive CSS overrides that set height: auto and overflow: auto on html/body. These forced the html element to expand to full content height, preventing the browser's native viewport scrolling. The browser handles non-map page scrolling correctly by default — only map pages need explicit overflow: hidden. --- .../components/layouts/app.html.heex | 25 +------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/lib/aprsme_web/components/layouts/app.html.heex b/lib/aprsme_web/components/layouts/app.html.heex index bc80ab7..a795411 100644 --- a/lib/aprsme_web/components/layouts/app.html.heex +++ b/lib/aprsme_web/components/layouts/app.html.heex @@ -1,29 +1,6 @@ <% assigns = assign_new(assigns, :map_page, fn -> false end) %>