From 08e01d848421946d4120f7022bca5ba97c5c0dce Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 4 May 2026 19:04:46 +0200 Subject: [PATCH] revert: restore mobile body scroll for pull-to-reload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverts 550b3cf — removing the override broke pull-to-reload, and single-scroll-container did not fix the offset glitch anyway. --- src/styles/app.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles/app.css b/src/styles/app.css index 9f4528a..2552ee1 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -62,6 +62,13 @@ body { scroll-behavior: smooth; } +@media screen and (max-width: 768px) { + html, + body { + overflow-y: auto; + } +} + .columns { margin-left: 0; margin-right: 0;