فهرست منبع

Increase text size in Now Playing bar

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
tuanchris 3 هفته پیش
والد
کامیت
717d5c00e8
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      frontend/src/components/NowPlayingBar.tsx

+ 4 - 4
frontend/src/components/NowPlayingBar.tsx

@@ -195,15 +195,15 @@ export function NowPlayingBar({ isLogsOpen = false, isVisible, onClose }: NowPla
             {isPlaying ? (
               <>
                 <div className="flex items-center gap-2">
-                  <p className="text-sm font-medium truncate">{patternName}</p>
+                  <p className="text-lg font-medium truncate">{patternName}</p>
                   {status?.is_paused && (
-                    <span className="text-xs text-muted-foreground">(Paused)</span>
+                    <span className="text-sm text-muted-foreground">(Paused)</span>
                   )}
                 </div>
-                <Progress value={progressPercent} className="h-1 mt-1" />
+                <Progress value={progressPercent} className="h-2 mt-2" />
               </>
             ) : (
-              <p className="text-sm text-muted-foreground">Not playing</p>
+              <p className="text-lg text-muted-foreground">Not playing</p>
             )}
           </div>