From aa14b4c185c12b1b0ee458efc5d94a428ceb4743 Mon Sep 17 00:00:00 2001 From: Adam French Date: Thu, 28 May 2026 10:53:43 +0100 Subject: [PATCH] Pin Listening header so only song content scrolls Co-Authored-By: Claude Opus 4.7 --- vue/src/views/home/Listening.vue | 53 ++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 17 deletions(-) diff --git a/vue/src/views/home/Listening.vue b/vue/src/views/home/Listening.vue index 3072d07..d10ef45 100644 --- a/vue/src/views/home/Listening.vue +++ b/vue/src/views/home/Listening.vue @@ -30,23 +30,27 @@ onUnmounted(() => { @@ -56,6 +60,21 @@ onUnmounted(() => { width: 100%; height: 100%; min-width: 0; + display: flex; + flex-direction: column; +} + +.header-wrapper { + flex-shrink: 0; + display: flex; + justify-content: center; + padding-top: 0.5rem; +} + +.content-scroll { + position: relative; + flex: 1; + min-height: 0; overflow-y: auto; }