Spaces:
Running
Running
File size: 280 Bytes
21b6fff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /* Custom scrollbar for dark theme */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
} |