Problem
The page loaded from a link in an alert. The person reading it is standing up, holding a phone, half awake, and needs to know within about fifteen seconds whether to open a laptop.
Solution
Decide what the phone version is for, then build that, rather than reflowing the desktop grid and hoping.
The distinction that makes this tractable: the mobile case is almost never analysis. It is triage. Somebody wants to know whether this is real, how bad, and whether it can wait. A phone layout designed for those three questions is a different page from the desktop one, and much shorter.
Reflow alone fails predictably. A twelve-column grid collapsing to one column produces an order determined by the source, which is usually the order panels were added. The most important panel ends up eighth. Nothing about the desktop layout expressed priority in a way the reflow could preserve, which is why priority has to be declared rather than inferred.
Three specific capabilities disappear on touch and need replacements rather than degradation.
Hover is gone. Anything only available in a tooltip is unavailable. Values that mattered enough to be on hover need to be on the page.
Precision pointing is gone. WCAG’s target size minimum exists because fingers are not cursors; drag-to-zoom on a chart, legend toggling and dense table rows all need larger targets or different interactions.
Horizontal space is gone. Wide tables and long legends have no version that works, so they need to become cards, or to be dropped.
The honest position, which few teams take, is that some dashboards should have no mobile version at all. A forty-panel investigation surface has no fifteen-second story, and shipping a scrollable version of it teaches people to squint at something that cannot help them.
Use when
People genuinely arrive on a phone, usually from an alert or a link, and there is a short answer worth giving them.
Don’t use when
The page’s whole value is density and comparison. Better to show a deliberate summary with a “open on desktop” path than a technically-responsive page nobody can use.
Trade-offs
A real mobile version is a second design with a second maintenance cost, and it drifts. Deciding what to cut is a political conversation, because every panel belongs to someone. Testing on real devices at real brightness in real conditions rarely happens. And a good mobile summary creates its own risk: people start making decisions from it that needed the full picture, because it was easier to reach.
Checklist
- What are the two or three questions someone on a phone actually has?
- Does panel order in the collapsed layout reflect priority, or source order?
- Is anything essential only reachable by hover?
- Do interactive targets meet the minimum size for fingers?
- What happens to wide tables and long legends?
- Is chart text legible at phone size, or scaled-down desktop type?
- How does this behave over a bad mobile connection?
- Is there a clear route to the full version when the summary is not enough?
- Has anyone opened this on a phone, at night, at low brightness?
- Should this dashboard have a mobile version at all?
Compare
Grafana reflows its grid to a single column below a breakpoint, which keeps every dashboard technically usable on a phone and rarely produces a priority order anyone chose. Datadog and most modern observability products ship dedicated mobile apps rather than responsive dashboards, which is an admission that triage on a phone is a different product rather than a narrower page. Sentry ports well by accident, because its primary surface is a list of issues and lists are what phones are good at. Public status pages are again the best-adapted example, since they are frequently read on a phone by someone who just found out something is broken, and they carry roughly three pieces of information for exactly that reason.
Related
Panel grid is what reflows, and the entry that covers why collapse order is rarely the priority order. Hover detail is the capability that disappears entirely. Sidebar and canvas is the navigation that has to become something else. Detail on demand is the interaction pattern that adapts best to a small screen. Header KPI strip is usually the only part of a dashboard worth keeping on a phone.