17 lines
No EOL
268 B
CSS
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;
|
|
} |