Spaces:
Running
Running
File size: 407 Bytes
07e8920 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | @import "tailwindcss";
.custom-scroll {
scrollbar-width: thin;
scrollbar-color: #c1c1c1 #f1f1f1;
}
.custom-scroll::-webkit-scrollbar {
width: 5px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #a1a1a1;
}
|