Style fixes

This commit is contained in:
2025-07-21 21:26:24 -07:00
parent 6e50924495
commit 5f919b4d40
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
@import 'tailwindcss'; @import 'tailwindcss';
.sidebar { .sidebar {
@apply fixed top-0 left-0 w-60 h-screen bg-[#161616] flex flex-col border-e-[1px] border-[#2a2a2a] z-[999]; @apply fixed top-0 left-0 w-60 h-screen bg-[#161616] flex flex-col border-e-[1px] border-[#242424] z-[1];
} }
.sidebar-downloads { .sidebar-downloads {

View File

@@ -118,7 +118,7 @@ function App () {
return ( return (
<> <>
<Sidebar setShowPopup={setShowPopup} setPopupMode={setPopupMode} setFadeOut={setFadeOut} /> <Sidebar setShowPopup={setShowPopup} setPopupMode={setPopupMode} setFadeOut={setFadeOut} />
<div className="relative z-[1] ml-[239px] w-[761px] border-b border-[#323232] h-[33px] bg-[#161616]" style={{ display: platform() == 'windows' ? 'block' : 'none' }}></div> <div className="relative z-[2] ml-[239px] w-[761px] border-b border-[#242424] h-[33px] bg-[#161616]" style={{ display: platform() == 'windows' ? 'block' : 'none' }}></div>
<div className="relative z-0"> <div className="relative z-0">
<main style={{ marginLeft: '15rem' }}>{renderContent()}</main> <main style={{ marginLeft: '15rem' }}>{renderContent()}</main>
</div> </div>

View File

@@ -5,7 +5,7 @@
} }
.leaderboard-scroll { .leaderboard-scroll {
@apply h-[85vh] bg-[#161616] border border-[#242424] rounded-lg overflow-y-auto max-w-md w-full; @apply h-[510px] bg-[#161616] border border-[#242424] rounded-lg overflow-y-auto max-w-md w-full;
} }
.leaderboard-entry { .leaderboard-entry {