1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/styles/global.css
patak 2442c80bfb
feat: improve layout (#19)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-11-21 05:30:21 +08:00

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;
}