fix(ui): landscape board zoom/pan + rack tile rendering + mobile block label #141

Merged
developer merged 3 commits from fix/landscape-board-ui into development 2026-06-29 19:11:05 +00:00
Showing only changes of commit a06dfe00fc - Show all commits
+8
View File
@@ -1544,6 +1544,14 @@
.make:disabled {
opacity: 0.4;
}
/* Landscape: the rack fills a narrow fixed-width panel with exactly seven tile slots, so the 56px
button (sized for the roomy portrait rack) is wider than the single slot a staged tile frees and
overlaps the now-rightmost tile. Match the button to one landscape tile slot (its width formula),
so it sits inside the freed slot with its right edge level with the rack's right edge — the
mirror of the first tile's left edge. */
.game-land .make {
width: calc((100% - 2 * var(--pad) - 6 * 5px) / 7);
}
/* The move-history header: leave (active) / export (finished) on the left, comms on the
right, icon-only. Sticky so it stays atop the scrolling move list. */
.hhead {