From 0291bd26b9abd9c6a92263f2e3e278bb9ef972b2 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 22 Jul 2026 19:52:42 +0000 Subject: [PATCH] Fix: Explore-Screen scrollt nicht mehr (body.noscroll + overscroll-behavior) Der globale .app-padding-bottom machte die Seite hoeher als den Viewport -> auf dem Feed war vertikales Wippen moeglich. Explore sperrt jetzt body-Scroll (overflow:hidden, height:100dvh, padding-bottom:0), scrollbare Screens (Detail/Create/Profil) bleiben unveraendert. Co-Authored-By: Claude Fable 5 --- prototyp-app.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/prototyp-app.html b/prototyp-app.html index a0228b1..18a6e55 100644 --- a/prototyp-app.html +++ b/prototyp-app.html @@ -23,6 +23,10 @@ } *{box-sizing:border-box; margin:0; padding:0;} html{-webkit-text-size-adjust:100%;} + html, body{overscroll-behavior-y:none;} + /* Explore ist ein fixer Vollbild-Screen: Seite darf nicht scrollen/wippen */ + body.noscroll{overflow:hidden; height:100dvh;} + body.noscroll .app{padding-bottom:0;} body{ background:var(--bg); color:var(--txt); font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Inter",Roboto,system-ui,sans-serif; @@ -293,7 +297,7 @@ .sheet li::before{content:"ยท"; position:absolute; left:2px; color:var(--accent); font-weight:700;} - +