From 6cfa2a4a44d0ddb012d084e4fa77e5488d019e9f Mon Sep 17 00:00:00 2001 From: Jacob Dahl Date: Fri, 26 Jun 2026 18:19:48 -0600 Subject: [PATCH] fix(frontend): left-align the Video page like the other pages The Video route widens #app to the full viewport so the live frame can fill it; with `margin: 0 auto` that left the container centered in the full width. Drop the auto margins so it sits beside the sidebar at the left edge, matching the data pages. --- frontend/src/pages/VideoPage.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/VideoPage.vue b/frontend/src/pages/VideoPage.vue index e38116c..1c1fd61 100644 --- a/frontend/src/pages/VideoPage.vue +++ b/frontend/src/pages/VideoPage.vue @@ -246,7 +246,10 @@ export default { width: 100%; max-width: 1600px; height: 100vh; - margin: 0 auto; + /* Left-aligned (not centered): the Video route widens #app to the full viewport, so + keep the frame beside the sidebar like the other pages instead of floating it in the + middle of that full width. */ + margin: 0; padding: 16px 20px 20px; box-sizing: border-box; }