Fix grid viewer zoom: fixed cell px size + overflow-x scroll

Cells are sized in CSS px to fit at load time. Browser zoom now scales
everything uniformly; grid scrolls horizontally instead of reflowing.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 01:22:55 +00:00
parent 754f8504f1
commit b9ba6d38b5
2 changed files with 8 additions and 1 deletions

View File

@@ -1338,6 +1338,10 @@ nav {
}
.grid-viewer {
overflow-x: auto;
}
.grid-cells {
display: grid;
gap: 4px;