From e998ba8fc79d97302b9541b0b62b5d002221f1a1 Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Sun, 19 Jul 2026 03:30:52 +0200 Subject: [PATCH] =?UTF-8?q?chickend=C3=B6ner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/s/js/f0ckm.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/s/js/f0ckm.js b/public/s/js/f0ckm.js index c91048c..26bcd77 100644 --- a/public/s/js/f0ckm.js +++ b/public/s/js/f0ckm.js @@ -6913,7 +6913,10 @@ window.cancelAnimFrame = (function () { // ── Edge zone & sync ──────────────────────────────────────────────────── const syncLeftEdgeZone = () => { const { sb, layout } = getLS(); - if (!sb || !layout || !document.body.classList.contains('layout-modern')) { + // The left drag zone only applies to the 3-column desktop grid (≥1000px). + // On mobile the sidebar becomes in-flow, so hide the zone to avoid it + // landing next to the right-sidebar drag zone on narrow screens. + if (!sb || !layout || !document.body.classList.contains('layout-modern') || window.innerWidth < 1000) { leftEdgeZone.style.display = 'none'; leftEdgeZone.style.pointerEvents = 'none'; return;