fix: adjust slider width for responsive design in multi-agent visualization (#134)

This commit is contained in:
Leo Hui 2025-05-15 11:59:16 +08:00 committed by GitHub
parent 86295ed195
commit 1a59accb52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,7 +147,7 @@ export function MultiAgentVisualization({ className }: { className?: string }) {
</Tooltip> </Tooltip>
<div className="text-muted-foreground ml-2 flex items-center justify-center"> <div className="text-muted-foreground ml-2 flex items-center justify-center">
<Slider <Slider
className="w-120" className="w-40 sm:w-80 md:w-100 lg:w-120"
max={playbook.steps.length - 1} max={playbook.steps.length - 1}
min={0} min={0}
step={1} step={1}