fix: prevent dashboard horizontal overflow on portrait mobile (#111) (#113)

Two root causes fixed:
- dashboard.css: remove `overflow: visible` from the "Admin Dashboard Layout"
  block that overrode the earlier `overflow: clip`, letting child content escape
  the dashboard container and cause layout overflow
- layout.css: replace `overflow-x: clip` with `overflow-x: hidden` on
  .app-content so layout overflow is properly contained at the scroll
  container level (clip only clips painting, not layout)

Co-authored-by: Ulas Kalayci <ulas.kalayci@googlemail.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ulsklyc
2026-04-30 17:24:28 +02:00
committed by GitHub
parent 1615b6bd0a
commit 345350c80b
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -128,7 +128,7 @@
flex: 1;
min-height: 0;
overflow-y: auto;
overflow-x: clip;
overflow-x: hidden;
overscroll-behavior-y: contain;
-webkit-overflow-scrolling: touch;
}