fix scroll bars
This commit is contained in:
parent
041127bbce
commit
d89ef5b928
1 changed files with 15 additions and 0 deletions
|
@ -437,3 +437,18 @@
|
||||||
// scrollbar for all browsers.
|
// scrollbar for all browsers.
|
||||||
background-color: var(--color-scrollbar-thumb-bg);
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue