What problem does it solve? Responsive UI bugs like horizontal overflow often slip through because pages are only checked at one screen size. This Skill enforces a disciplined audit of web layouts at multiple viewport widths so layout regressions are caught and fixed at the correct owning element before release. ## Core Features & Use Cases - Multi-viewport checks: Renders and inspects the page at 390px, 1366px, and 2560px, plus any width near a layout breakpoint. - Horizontal overflow gate: Compares document.documentElement.scrollWidth against clientWidth at every checked width and treats any mismatch as a release blocker. - Root-cause fixes: Targets the smallest owning layout, addressing common causes such as width: 100% with padding under content-box, intrinsic minimum widths in flex children or Shadow DOM, and controls that stay on one row at mobile widths. - Use Case: Before shipping a new dashboard page, run the audit to confirm no horizontal scrollbar appears on mobile, then fix the offending flex child and verify with a build or type check. ## Quick Start Audit this page for responsive layout issues at mobile, laptop, and ultrawide widths and fix any horizontal overflow you find.