[agent-pipeline] pipe-20260311104251-xw7c round-2

This commit is contained in:
DDD1542 2026-03-11 19:49:17 +09:00
parent 6be07e5e88
commit 2da5cd9637
1 changed files with 5 additions and 8 deletions

View File

@ -364,7 +364,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
} }
}} }}
placeholder="100" placeholder="100"
className="h-7 text-xs" className="h-7 w-full text-xs"
/> />
</div> </div>
<div className="flex-1"> <div className="flex-1">
@ -396,20 +396,17 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
}} }}
step={1} step={1}
placeholder="10" placeholder="10"
className="h-7 text-xs" className="h-7 w-full text-xs"
/> />
</div> </div>
</div> <div className="flex-1">
{/* Z-Index */} <Label className="text-[10px] text-muted-foreground">Z-Index</Label>
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground">Z-Index</span>
<div className="w-[160px]">
<Input <Input
type="number" type="number"
step="1" step="1"
value={currentPosition.z || 1} value={currentPosition.z || 1}
onChange={(e) => handleUpdate("position.z", parseInt(e.target.value) || 1)} onChange={(e) => handleUpdate("position.z", parseInt(e.target.value) || 1)}
className="h-7 text-xs" className="h-7 w-full text-xs"
/> />
</div> </div>
</div> </div>