feat: (ui) leaderboards

This commit is contained in:
syntaxbullet
2026-01-09 16:45:36 +01:00
parent 682e9d208e
commit d870ef69d5
6 changed files with 280 additions and 8 deletions

View File

@@ -114,6 +114,29 @@
box-shadow: 0 0 40px oklch(0.82 0.18 85 / 0.12);
}
/* Custom Scrollbar Global */
.custom-scrollbar::-webkit-scrollbar,
body::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
background: var(--muted);
border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
background: var(--primary);
}
/* Entrance Animations */
.animate-in {
animation-duration: 0.6s;