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

@@ -44,21 +44,6 @@
border-radius: 16px;
}
::-webkit-scrollbar {
width: 8px;
background: transparent;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: var(--md-sys-color-on-secondary);
border-radius: 4px;
}
::-webkit-resizer {
display: none;
}
fieldset::before {
content: "$";
@@ -86,6 +71,8 @@
}
.io {
--scrollbar-color: var(--md-sys-color-secondary);
z-index: 1;
overflow-y: auto;

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