From a0d465abc43e520cdaeb0ed0b6e864739df85f6a Mon Sep 17 00:00:00 2001 From: ecco257 <72117210+ecco257@users.noreply.github.com> Date: Fri, 16 Feb 2024 17:37:57 -0500 Subject: [PATCH] Allow scrolling of queue and fix height to just touch playbar --- style/queue.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/style/queue.scss b/style/queue.scss index 9e793d9..9eea3b3 100644 --- a/style/queue.scss +++ b/style/queue.scss @@ -4,11 +4,11 @@ position: fixed; top: 0; right: 0; - width: 300px; - height: 45rem; - overflow: hidden; + width: 400px; + height: calc(100% - 78.9px); /* Adjust height to fit the queue */ background-color: white;/*$queue-background-color; Queue background color */ box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + overflow-y: auto; /* Add scroll bar when queue is too long */ .queue-header { background-color: #333; /* Header background color */