From 8b92d37d01a14e44d825ac345d3609e3f1a4d39b Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 20 May 2026 17:51:52 -0400 Subject: [PATCH] camera: taller viewport (16/14), less bottom margin (4px) --- static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index cdfecda..926f3a8 100644 --- a/static/index.html +++ b/static/index.html @@ -435,8 +435,8 @@ ═══════════════════════════════════════════════════════════════════════ */ .camera-area { position: relative; background: #0a0b0f; border-radius: var(--radius-sm); - aspect-ratio: 16/12; display: flex; align-items: center; justify-content: center; - overflow: hidden; margin-bottom: 8px; + aspect-ratio: 16/14; display: flex; align-items: center; justify-content: center; + overflow: hidden; margin-bottom: 4px; } .camera-area video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; } .camera-placeholder { text-align: center; z-index: 1; cursor: pointer; }