Allow scrolling of queue and fix height to just touch playbar

This commit is contained in:
Connor Wittman 2024-02-16 17:37:57 -05:00
parent 24ed2afae6
commit a0d465abc4

View File

@ -4,11 +4,11 @@
position: fixed; position: fixed;
top: 0; top: 0;
right: 0; right: 0;
width: 300px; width: 400px;
height: 45rem; height: calc(100% - 78.9px); /* Adjust height to fit the queue */
overflow: hidden;
background-color: white;/*$queue-background-color; Queue background color */ background-color: white;/*$queue-background-color; Queue background color */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
overflow-y: auto; /* Add scroll bar when queue is too long */
.queue-header { .queue-header {
background-color: #333; /* Header background color */ background-color: #333; /* Header background color */