-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement leaderboard UI with animations and scrollable layout
- Loading branch information
1 parent
ac0f7e8
commit b69ecae
Showing
2 changed files
with
113 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.custom-scrollbar { | ||
scrollbar-width: thin; | ||
scrollbar-color: rgba(255, 255, 255, 0.1) transparent; | ||
} | ||
|
||
.custom-scrollbar::-webkit-scrollbar { | ||
width: 6px; | ||
} | ||
|
||
.custom-scrollbar::-webkit-scrollbar-track { | ||
background: transparent; | ||
} | ||
|
||
.custom-scrollbar::-webkit-scrollbar-thumb { | ||
background-color: rgba(255, 255, 255, 0.1); | ||
border-radius: 20px; | ||
} | ||
|
||
.custom-scrollbar::-webkit-scrollbar-thumb:hover { | ||
background-color: rgba(255, 255, 255, 0.2); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters