mirror of https://github.com/elk-zone/elk.git
25 lines
355 B
CSS
25 lines
355 B
CSS
|
* {
|
||
|
scrollbar-color: #8885 var(--c-border);
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
width: 10px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar:horizontal {
|
||
|
height: 10px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: var(--c-border);
|
||
|
border-radius: 1px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: #8885;
|
||
|
border-radius: 1px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
background: #8886;
|
||
|
}
|