mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
21 lines
391 B
SCSS
21 lines
391 B
SCSS
|
|
::-webkit-scrollbar {
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track {
|
||
|
|
background: rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track:hover {
|
||
|
|
background-color: rgba(0, 0, 0, .05);
|
||
|
|
box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1)
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb {
|
||
|
|
background: rgba(0, 0, 0, 0.2);
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb:hover {
|
||
|
|
background: rgba(0, 0, 0, 0.5);
|
||
|
|
}
|