1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +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

@@ -0,0 +1,3 @@
<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.721924 9.93097L4.85292 5.79997L0.721924 1.66897L1.99992 0.399973L7.39992 5.79997L1.99992 11.2L0.721924 9.93097Z" fill="#506784"/>
</svg>

After

Width:  |  Height:  |  Size: 243 B

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;
}