added compose

This commit is contained in:
cool.gitter.choco
2025-01-26 21:25:13 -06:00
parent f5d4d95f8a
commit 96535235ae
2 changed files with 69 additions and 0 deletions

9
docker-compose.yaml Normal file
View File

@@ -0,0 +1,9 @@
name: spotizerr
services:
spotizerr:
volumes:
- ./creds:/app/creds
- ./downloads:/app/downloads
ports:
- 7171:7171
image: spotizerr

View File

@@ -1071,4 +1071,64 @@ html {
.settings-icon:hover img,
.queue-icon:hover img {
opacity: 0.8;
}
/* Global Scrollbar Styles */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #181818;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #2a2a2a;
border-radius: 4px;
border: 2px solid #181818;
}
::-webkit-scrollbar-thumb:hover {
background: #3a3a3a;
}
/* Firefox Support */
* {
scrollbar-width: thin;
scrollbar-color: #2a2a2a #181818;
}
/* Sidebar Specific Scrollbars */
.sidebar::-webkit-scrollbar {
width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
border-width: 1px;
}
/* Queue Items Scrollbar */
#queueItems::-webkit-scrollbar {
width: 6px;
}
#queueItems::-webkit-scrollbar-thumb {
background: #3a3a3a;
}
/* Results Container Scrollbar */
.results-container::-webkit-scrollbar {
width: 8px;
}
/* Smooth Scroll Behavior */
html {
scroll-behavior: smooth;
}
/* Scrollbar Corner */
::-webkit-scrollbar-corner {
background: #121212;
}