Fixed
- Dashboard scrolling restored. The internal-scroll-container approach introduced in v0.52.29 (
display: flex; height: 100%; overflow: hiddenon.dashboard,flex: 1; overflow-y: autoon.dashboard-shell) caused a scroll regression:height: 100%on.dashboardresolved against.page-transition(its direct parent,height: auto), making it equivalent toheight: autoper CSS spec. As a result.dashboard-shellreceived no height constraint and itsoverflow-y: autonever activated; on iOS,overscroll-behavior-y: containon the unconstrained.dashboard-shelladditionally blocked touch events from reaching.app-content. Fix: reverted tooverflow: visibleon.dashboardand removed the internal scroll container from.dashboard-shell; scrolling happens via.app-contentas on every other page.