mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-03-20 02:44:40 +00:00
13 lines
211 B
SCSS
13 lines
211 B
SCSS
::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
transition: background-color 0.1s;
|
|
background-color: var(--scroll-color);
|
|
}
|