diff --git a/client/src/pages/os.tsx b/client/src/pages/os.tsx index 5ad73a3..9853414 100644 --- a/client/src/pages/os.tsx +++ b/client/src/pages/os.tsx @@ -1811,20 +1811,23 @@ function Taskbar({ windows, activeWindowId, apps, time, showStartMenu, user, isA onClick={() => onWindowClick(window.id)} whileHover={{ scale: 1.02 }} whileTap={{ scale: 0.98 }} - className={`h-8 px-3 flex flex-col items-center justify-center gap-0.5 rounded transition-colors min-w-0 relative ${ + className={`h-7 w-7 flex items-center justify-center rounded-md transition-colors relative ${ activeWindowId === window.id && !window.minimized - ? 'bg-cyan-500/20 text-cyan-400' - : window.minimized ? 'bg-white/5 text-white/40 hover:bg-white/10' : 'bg-white/10 text-white/80 hover:bg-white/15' + ? 'bg-cyan-500/20' + : window.minimized ? 'bg-white/5 hover:bg-white/10' : 'bg-white/10 hover:bg-white/15' }`} + title={window.title} data-testid={`taskbar-${window.id}`} > -