fix: move debug overlay below the HUD row so the tracking chip (freeze toggle) is tappable again

This commit is contained in:
2026-08-19 16:49:37 +10:00
parent d43e344052
commit 7ba6418c55
+3 -1
View File
@@ -88,11 +88,13 @@
<button id="backBtn">← Back</button> <button id="backBtn">← Back</button>
</div> </div>
<!-- #dbg sits BELOW the #hud row: it takes pointer events in dev mode, so overlapping
the tracking chip made the freeze toggle unreachable (taps cycled the engine instead). -->
<div id="hud" class="hidden"> <div id="hud" class="hidden">
<span id="trk"></span> <span id="trk"></span>
<span id="cnt"></span> <span id="cnt"></span>
</div> </div>
<pre id="dbg" style="position:fixed;top:8px;left:8px;margin:0;padding:6px 8px;z-index:9998; <pre id="dbg" style="position:fixed;top:48px;left:8px;margin:0;padding:6px 8px;z-index:9998;
background:rgba(6,8,15,.72);color:#8fffd0;font:11px/1.45 monospace;border-radius:6px; background:rgba(6,8,15,.72);color:#8fffd0;font:11px/1.45 monospace;border-radius:6px;
pointer-events:none;white-space:pre;display:none"></pre> pointer-events:none;white-space:pre;display:none"></pre>
<button id="shutter" class="hidden" aria-label="Take photo"></button> <button id="shutter" class="hidden" aria-label="Take photo"></button>