(feat): update logo
Some checks failed
/ build-web (push) Successful in 1m8s
/ build-desktop (push) Successful in 11m16s
/ release (push) Has been cancelled
/ build-mobile (push) Has been cancelled

This commit is contained in:
Alois 2026-05-24 02:06:32 +02:00
commit 809cbb5b5e
56 changed files with 285 additions and 3 deletions

View file

@ -17,3 +17,32 @@ body,
#root {
min-height: 0;
}
@layer base {
* {
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: var(--border);
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
opacity: 0.8;
}
::-webkit-scrollbar-corner {
background: transparent;
}
}