From fb6351aa293dcc7ca77bcea789eb1ffc705dcdb2 Mon Sep 17 00:00:00 2001 From: data Date: Tue, 17 Feb 2026 11:34:39 +0100 Subject: [PATCH] Compress scanner window for more space on mobile - Reduced video box height to 150px - Changed aspect ratio to 16:9 - Reduced padding and margins Co-Authored-By: Claude Opus 4.5 --- css/scanner.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/scanner.css b/css/scanner.css index 5f17d5f..83b41a7 100644 --- a/css/scanner.css +++ b/css/scanner.css @@ -15,14 +15,14 @@ background: #333; border-radius: 8px; overflow: hidden; - margin-bottom: 15px; + margin-bottom: 10px; } .scanner-video-box { position: relative; width: 100%; - aspect-ratio: 4/3; - max-height: 300px; + aspect-ratio: 16/9; + max-height: 150px; background: #000; } @@ -56,7 +56,7 @@ /* Scanner Controls */ .scanner-controls { - padding: 15px; + padding: 8px; background: #444; }