mirror of
https://github.com/lynchaos/ashvale-station.git
synced 2026-09-12 12:47:49 +00:00
I claimed 20/20 clean and was over-stating it: that was a fixed list of viewports, and a fixed list cannot cover a user's zoom level, a larger default font, or simply more accumulated history than a panel was designed around. All three change how much space a card needs. I could not reproduce the reported clipping at any width or height I tried, so rather than keep guessing at viewports I made the failure impossible by construction. The page now measures itself after every layout change and on resize: if any card's content escapes it, density escalates to compact, and if that still is not enough the height lock is released and the page scrolls. Content is never silently clipped, whatever the viewport. Scrolling beats hiding. The escalation is exercised, not dead code: across 34 viewports it used compact on 3 and scroll on 2, and at 125% zoom it used both. Also added Cache-Control: no-cache to the dashboard route. The page is generated from live config and changes every deploy, but carried no cache headers, so a browser could hold an old copy indefinitely and show layout bugs that were already fixed. That is a plausible reason a fix can look like it did not land. Verified: 34 viewports from 1920x1080 to 320x568, six tabs each, 204 tab renders, zero card overflow and zero horizontal overflow; plus five zoom levels from 100% to 200%.