fix and update

This commit is contained in:
lendry
2026-07-01 23:27:48 +03:00
parent 2b88e028c6
commit bcdfbc3861
36 changed files with 1504 additions and 320 deletions

View File

@@ -27,6 +27,31 @@ body {
color: var(--foreground);
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
scrollbar-width: thin;
scrollbar-color: rgb(168 173 188 / 55%) transparent;
}
* {
scrollbar-width: thin;
scrollbar-color: rgb(168 173 188 / 55%) transparent;
}
*::-webkit-scrollbar {
width: 6px;
height: 6px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: rgb(168 173 188 / 45%);
border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
background: rgb(102 112 133 / 65%);
}
a {