interstellar_ai/app/styles/scrollbar.css
2024-09-18 11:17:34 +02:00

17 lines
No EOL
268 B
CSS

/* Scrollbar styling */
.scrollbar {
overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar {
width: 8px;
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 4px;
}
.scrollbar::-webkit-scrollbar-track {
background-color: #f1f1f1;
}