Hide system scrollbar for queue sidebar tab (#1227)

This commit is contained in:
Chenlei Hu
2024-10-11 13:59:51 -04:00
committed by GitHub
parent fbc1482b90
commit f328d4cd81

View File

@@ -328,6 +328,14 @@ watch(
overflow-y: auto;
}
.scroll-container::-webkit-scrollbar {
width: 1px;
}
.scroll-container::-webkit-scrollbar-thumb {
background-color: transparent;
}
.queue-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));