+20
frontend/src/lib/components/AddToMenu.svelte
+20
frontend/src/lib/components/AddToMenu.svelte
···
503
503
.playlist-list {
504
504
max-height: 240px;
505
505
overflow-y: auto;
506
+
scrollbar-width: thin;
507
+
scrollbar-color: var(--border-default) transparent;
508
+
}
509
+
510
+
.playlist-list::-webkit-scrollbar {
511
+
width: 8px;
512
+
}
513
+
514
+
.playlist-list::-webkit-scrollbar-track {
515
+
background: transparent;
516
+
border-radius: 4px;
517
+
}
518
+
519
+
.playlist-list::-webkit-scrollbar-thumb {
520
+
background: var(--border-default);
521
+
border-radius: 4px;
522
+
}
523
+
524
+
.playlist-list::-webkit-scrollbar-thumb:hover {
525
+
background: var(--border-emphasis);
506
526
}
507
527
508
528
.playlist-item {