Merge tag 'v0.10.24' into beta

This commit is contained in:
2025-12-29 01:57:40 +03:00
422 changed files with 20967 additions and 8663 deletions

View File

@@ -235,3 +235,23 @@ h3 {
margin-block: var(--gap-md) var(--gap-md);
color: var(--color-contrast);
}
// Scrollbar styles
::-webkit-scrollbar {
width: 0.75rem;
height: 0.75rem;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--color-button-bg);
}
// Firefox scrollbar
* {
scrollbar-width: thin;
scrollbar-color: var(--color-button-bg) transparent;
}