feat(desktop): better task tool rendering

This commit is contained in:
Adam 2025-12-21 05:50:26 -06:00
commit 986d12fd20
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
3 changed files with 167 additions and 11 deletions

View file

@ -12,16 +12,16 @@
/* } */
::-webkit-scrollbar-track {
background: var(--theme-background-panel);
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: var(--theme-border-subtle);
background-color: var(--surface-float-base);
border-radius: var(--radius-md);
}
* {
scrollbar-color: var(--theme-border-subtle) var(--theme-background-panel);
scrollbar-color: var(--surface-float-base) transparent;
}
}