The 769–1024px breakpoint forced 6 columns into the visible width with `grid-template-columns: repeat(6, minmax(0, 1fr))` and `overflow-x: hidden`, collapsing columns to ~130–170px on Android tablets and stacking task card titles one word per line. Switch to `minmax(260px, 1fr)` with `overflow-x: auto` so columns keep a readable minimum width and the board scrolls horizontally, matching desktop. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
438 B
438 B
@runfusion/fusion
| @runfusion/fusion |
|---|
| patch |
Dashboard board no longer squeezes all 6 columns into the visible width on tablet-sized viewports (769–1024px). Columns now keep a 260px minimum and the board scrolls horizontally, matching desktop behavior. Previously the tablet rule used minmax(0, 1fr) with overflow-x: hidden, collapsing columns to ~130–170px wide on Android tablets and forcing task card titles to stack one word per line.