jskim-node #414

Merged
kjs merged 90 commits from jskim-node into main 2026-03-13 11:47:08 +09:00
1 changed files with 5 additions and 8 deletions
Showing only changes of commit 2da5cd9637 - Show all commits

View File

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