fix(visualizer): lift footer above waveform backdrop; move zoom slider to top-right

This commit is contained in:
daniel-c-harvey
2026-06-15 10:45:25 -04:00
parent 4df2b8fb57
commit 9f074f7350
2 changed files with 9 additions and 3 deletions
@@ -21,12 +21,14 @@
-webkit-backdrop-filter: blur(2px);
}
/* Zoom slider — a small viewing control pinned to the bottom-right. Pointer events are re-enabled
here only (the backdrop stays inert), and it is never a seek surface. */
/* Zoom slider — a small viewing control pinned to the top-right, clear of the player bar at
the bottom and the nav bar at the top. Pointer events are re-enabled here only (the backdrop
stays inert), and it is never a seek surface. top: 5rem sits just below the fixed nav bar
(~4.5rem tall) so neither the expanded player bar nor the nav occludes it. */
.mix-waveform-zoom {
position: absolute;
right: 1.5rem;
bottom: 1.5rem;
top: 5rem;
width: 180px;
max-width: 40vw;
pointer-events: auto;
@@ -1,4 +1,8 @@
.deepdrft-footer {
/* position:relative + z-index:1 creates a stacking context that paints above the
MixWaveformVisualizer backdrop (z-index:0), keeping footer text fully legible. */
position: relative;
z-index: 1;
background: var(--deepdrft-white);
border-top: 1px solid var(--deepdrft-border);
padding: 3rem;