1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

add splitters

This commit is contained in:
lana-k
2020-09-25 14:57:49 +02:00
parent 708714b3a5
commit 22b8b86138
6 changed files with 345 additions and 47 deletions

View File

@@ -1,19 +1,16 @@
/* width */
::-webkit-scrollbar {
width: 10px;
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
background: #ebf0f8;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
background: var(--color-accent);
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}