Found in W1d first-ever visual QA (v0.5.0). Full report: .growth/truth/W1d-visual-qa.md.
Symptom
On a phone, wide article tables have their right-hand columns clipped and unreachable — actual content is lost for the entire mobile device class. Desktop renders fine.
Trail (measured via Playwright at 390×844)
article/what-is-the-agent-sdk "How It Works" 4-col table: table.scrollWidth = 588px inside a 390px viewport.
- Wrapper
.article-body computed overflow-x: visible.
document.documentElement.scrollWidth = 390, docOverflowX = false → the page does not scroll horizontally, so columns 3–4 ("Claude Code CLI", "Managed Agents") are clipped with no scroll affordance.
- Screenshot:
scratchpad/qa-shots/article__mobile390__dark__full.png (columns cut at the right edge).
Repro
- Open any article with a wide table at ≤400px width.
- The last columns are not visible and cannot be scrolled to.
Impact
Severity: HIGH — silent content loss on mobile; generator-level (affects any KB whose articles contain wide tables), not specific to this workspace.
Fix
In the present generator, wrap rendered <table>s in a container with overflow-x: auto (with a subtle scroll hint), or stack tables to key/value cards under a mobile breakpoint. Applies to all future sites.
Found in W1d first-ever visual QA (v0.5.0). Full report:
.growth/truth/W1d-visual-qa.md.Symptom
On a phone, wide article tables have their right-hand columns clipped and unreachable — actual content is lost for the entire mobile device class. Desktop renders fine.
Trail (measured via Playwright at 390×844)
article/what-is-the-agent-sdk"How It Works" 4-col table:table.scrollWidth = 588pxinside a 390px viewport..article-bodycomputedoverflow-x: visible.document.documentElement.scrollWidth = 390,docOverflowX = false→ the page does not scroll horizontally, so columns 3–4 ("Claude Code CLI", "Managed Agents") are clipped with no scroll affordance.scratchpad/qa-shots/article__mobile390__dark__full.png(columns cut at the right edge).Repro
Impact
Severity: HIGH — silent content loss on mobile; generator-level (affects any KB whose articles contain wide tables), not specific to this workspace.
Fix
In the present generator, wrap rendered
<table>s in a container withoverflow-x: auto(with a subtle scroll hint), or stack tables to key/value cards under a mobile breakpoint. Applies to all future sites.