mirror of https://github.com/elk-zone/elk.git
30 lines
493 B
CSS
30 lines
493 B
CSS
* {
|
|
scrollbar-color: #5555 var(--color-border);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar:horizontal {
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--color-border);
|
|
border-radius: 1px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #555;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #666;
|
|
}
|
|
|
|
/* Force vertical scrollbar to be always visible to avoid layout shift while loading the content */
|
|
html {
|
|
overflow-y: scroll;
|
|
} |