From 482d6d4bfe570e3fff54317adca5650c5e3601f4 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Mon, 20 Jul 2026 14:49:33 -0400 Subject: [PATCH] shopfloor dashboard: fit-to-viewport scaling for TV kiosks The board was a fixed-pixel layout with an internal overflow-y scroll, so on a TV (no scrolling) content past the fold was unreachable. Wrap it in a fixed 1920-wide surface and scale it to fill the viewport (ResizeObserver + resize), so the whole board is visible edge-to-edge at any resolution. Drop the .dashboard-content max-height/overflow scroll. --- frontend/src/views/ShopfloorDashboard.vue | 44 ++++++++++++++++++++--- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/ShopfloorDashboard.vue b/frontend/src/views/ShopfloorDashboard.vue index 149ead8..e0b702f 100644 --- a/frontend/src/views/ShopfloorDashboard.vue +++ b/frontend/src/views/ShopfloorDashboard.vue @@ -1,5 +1,6 @@