From 5dc24efead94b59e6de7e3e77d14d7ecd41c16b8 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 27 Dec 2025 23:00:36 +0100 Subject: [PATCH] thre --- modules/web.html | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/modules/web.html b/modules/web.html index 25d5719..2b8548e 100644 --- a/modules/web.html +++ b/modules/web.html @@ -73,17 +73,25 @@ /* --- STICKY QUEUE IMPLEMENTATION --- */ #section-playlist { - flex: 1 1 0; /* Let it grow and shrink, with a zero basis */ - min-height: 150px; /* Ensure it's always at least this tall */ + flex: 2 1 0; /* Increased priority to take more space when both are open */ + min-height: 150px; } + #section-queue { - flex: 0 0 160px; /* Don't grow, don't shrink, and have a fixed height */ + /* Changed from 0 0 160px to 1 1 160px */ + /* This allows it to GROW (1) and SHRINK (1) with a base size of 160px */ + flex: 1 1 160px; + display: flex; + flex-direction: column; + min-height: 50px; } + #section-queue .frame-title { cursor: default; } + #section-queue .frame-title::after { - display: none; /* Hide collapse arrow */ + display: none; } .small{font-size:12px; color:var(--muted)} @@ -151,7 +159,7 @@
Queue
-
+