diff --git a/modules/web.html b/modules/web.html
index 2b8548e..1a532a4 100644
--- a/modules/web.html
+++ b/modules/web.html
@@ -73,25 +73,21 @@
/* --- STICKY QUEUE IMPLEMENTATION --- */
#section-playlist {
- flex: 2 1 0; /* Increased priority to take more space when both are open */
- min-height: 150px;
+ flex: 3; /* Takes more space by default */
+ min-height: 100px;
}
#section-queue {
- /* 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;
+ /* flex: 1 allows it to grow into any space left by the playlist */
+ flex: 1;
+ min-height: 160px; /* It will be at least this tall */
display: flex;
flex-direction: column;
- min-height: 50px;
}
- #section-queue .frame-title {
- cursor: default;
- }
-
- #section-queue .frame-title::after {
- display: none;
+ /* Ensure the inner listbox fills the new height */
+ #section-queue .collapsible-content {
+ flex-grow: 1;
}
.small{font-size:12px; color:var(--muted)}