Spaces:
Runtime error
Runtime error
File size: 351 Bytes
de234b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | .custom-scrollbar {
height: 500px; /* Set your desired height */
overflow: auto;
}
.custom-scrollbar::-webkit-scrollbar {
width: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #1D5B79;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #1D5B79;
}
|