UI improvements and initial loading screen color

This commit is contained in:
2026-02-02 12:08:30 -06:00
parent b2c197454d
commit 3212402788
7 changed files with 338 additions and 238 deletions
+28
View File
@@ -114,6 +114,34 @@
}
}
/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--background);
}
::-webkit-scrollbar-thumb {
background: var(--border);
border: 3px solid var(--background);
background-clip: content-box;
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--muted-foreground);
border: 3px solid var(--background);
background-clip: content-box;
}
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: var(--border) var(--background);
}
.fade-enter-active,
.fade-exit-active {
transition: opacity 0.2s ease;