chord search

This commit is contained in:
2023-07-07 22:57:13 +02:00
parent 21f0ee2041
commit 8ea6ed2657
7 changed files with 106 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
::-webkit-scrollbar {
width: 8px;
background: transparent;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar-color, white);
border-radius: 4px;
transition: all 250ms ease;
&:hover {
filter: brightness(120%);
}
&:active {
filter: brightness(80%);
}
}
::-webkit-resizer {
display: none;
}