fix scroll bars

This commit is contained in:
zeppi 2021-12-03 17:06:42 -05:00 committed by jessopb
parent 041127bbce
commit d89ef5b928

View file

@ -437,3 +437,18 @@
// scrollbar for all browsers.
background-color: var(--color-scrollbar-thumb-bg);
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background-color: transparent;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: var(--color-scrollbar-thumb-bg);
border-radius: 10px;
}