@@ -86,9 +86,9 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
8686 < Sheet open = { isOpen } onOpenChange = { onClose } >
8787 < SheetContent
8888 side = "bottom"
89- className = "h-full w-full p-0 overflow-hidden bg-gradient -to-br from-background/95 via-background/90 to-background/95 backdrop-blur-xl border-t border-white/10 shadow-2xl"
89+ className = "h-full w-full p-0 overflow-hidden bg-linear -to-br from-background/95 via-background/90 to-background/95 backdrop-blur-xl border-t border-white/10 shadow-2xl"
9090 >
91- < div className = "absolute inset-0 bg-gradient -to-br from-white/[0.08] via-transparent to-white/[0.04] pointer-events-none" />
91+ < div className = "absolute inset-0 bg-linear -to-br from-white/8 via-transparent to-white/4 pointer-events-none" />
9292
9393 { /* Desktop: Side-by-side layout */ }
9494 < div className = "hidden lg:flex h-full w-full max-w-5xl mx-auto relative z-10" >
@@ -101,7 +101,7 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
101101 < Button
102102 variant = "ghost"
103103 size = "icon"
104- className = "h-10 w-10 bg-black/30 backdrop-blur-sm hover:bg-black/50 rounded-full"
104+ className = "h-10 w-10 bg-black/30 backdrop-blur-xs hover:bg-black/50 rounded-full"
105105 >
106106 < MoreHorizontal className = "h-5 w-5" />
107107 </ Button >
@@ -130,8 +130,8 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
130130 </ div >
131131
132132 { /* Queue Section */ }
133- < div className = "w-[420px] flex flex-col bg-white/[0.02] " >
134- < div className = "h-14 px-4 flex items-center gap-2 border-b border-white/10 bg-white/[0.03] shrink-0 justify-between" >
133+ < div className = "w-[420px] flex flex-col bg-white/2 " >
134+ < div className = "h-14 px-4 flex items-center gap-2 border-b border-white/10 bg-white/3 shrink-0 justify-between" >
135135 < div className = "flex items-center gap-2" >
136136 < ListMusic className = "w-4 h-4 text-primary" />
137137 < span className = "text-base font-medium" > Queue</ span >
@@ -147,7 +147,7 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
147147 variant = "ghost"
148148 size = "icon"
149149 onClick = { onClose }
150- className = "h-10 w-10 bg-black/30 backdrop-blur-sm hover:bg-black/50 rounded-full"
150+ className = "h-10 w-10 bg-black/30 backdrop-blur-xs hover:bg-black/50 rounded-full"
151151 >
152152 < ChevronDownIcon className = "h-5 w-5" />
153153 </ Button >
@@ -160,7 +160,7 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
160160
161161 { /* Mobile/Tablet: Tab-based layout */ }
162162 < div className = "lg:hidden h-full flex flex-col w-full max-w-[500px] mx-auto relative z-10" >
163- < SheetHeader className = "px-3 pb-0 border-b border-white/10 bg-gradient -to-r from-white/[0.05] to-transparent" >
163+ < SheetHeader className = "px-3 pb-0 border-b border-white/10 bg-linear -to-r from-white/5 to-transparent" >
164164 < div className = "flex items-center justify-between" >
165165 < Button
166166 variant = "ghost"
@@ -203,12 +203,12 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
203203 </ div >
204204
205205 < div className = "flex justify-center pb-4" >
206- < div className = "grid grid-cols-2 w-full bg-white/[0.08] rounded-lg p-1 border border-white/10" >
206+ < div className = "grid grid-cols-2 w-full bg-white/8 rounded-lg p-1 border border-white/10" >
207207 < button
208208 onClick = { ( ) => setActiveTab ( "current" ) }
209209 className = { `flex items-center justify-center gap-2 py-2 px-3 rounded-md text-sm font-medium transition-colors ${
210210 activeTab === "current"
211- ? "bg-primary/20 text-foreground shadow-sm "
211+ ? "bg-primary/20 text-foreground shadow-xs "
212212 : "text-muted-foreground hover:text-foreground"
213213 } `}
214214 >
@@ -220,7 +220,7 @@ const PlayerSheet = memo(({ isOpen, onClose, currentSong, onOpenModal }) => {
220220 onClick = { ( ) => setActiveTab ( "queue" ) }
221221 className = { `flex items-center justify-center gap-2 py-2 px-3 rounded-md text-sm font-medium transition-colors ${
222222 activeTab === "queue"
223- ? "bg-primary/20 text-foreground shadow-sm "
223+ ? "bg-primary/20 text-foreground shadow-xs "
224224 : "text-muted-foreground hover:text-foreground"
225225 } `}
226226 >
0 commit comments