샤드시옌으로 쫙 수정

This commit is contained in:
leeheejin
2025-10-29 17:53:03 +09:00
parent 2517261db9
commit 437e0c331c
87 changed files with 1493 additions and 1491 deletions

View File

@@ -94,13 +94,13 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
<div className="space-y-4">
{/* 자재 정보 */}
<div className="rounded-lg bg-gray-50 p-4">
<div className="mb-2 text-sm font-medium text-gray-600"> </div>
<div className="rounded-lg bg-muted p-4">
<div className="mb-2 text-sm font-medium text-foreground"> </div>
<div className="flex items-center gap-4">
<div className="h-10 w-10 rounded border" style={{ backgroundColor: material.default_color }} />
<div>
<div className="font-medium">{material.material_name}</div>
<div className="text-sm text-gray-600">{material.material_code}</div>
<div className="text-sm text-foreground">{material.material_code}</div>
</div>
</div>
</div>
@@ -117,7 +117,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
min="1"
className="flex-1"
/>
<span className="text-sm text-gray-600">{material.unit}</span>
<span className="text-sm text-foreground">{material.unit}</span>
</div>
</div>
@@ -126,7 +126,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
<Label>3D </Label>
<div className="grid grid-cols-3 gap-2">
<div>
<Label htmlFor="posX" className="text-xs text-gray-600">
<Label htmlFor="posX" className="text-xs text-foreground">
X ()
</Label>
<Input
@@ -138,7 +138,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
/>
</div>
<div>
<Label htmlFor="posY" className="text-xs text-gray-600">
<Label htmlFor="posY" className="text-xs text-foreground">
Y ()
</Label>
<Input
@@ -150,7 +150,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
/>
</div>
<div>
<Label htmlFor="posZ" className="text-xs text-gray-600">
<Label htmlFor="posZ" className="text-xs text-foreground">
Z ()
</Label>
<Input
@@ -169,7 +169,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
<Label>3D </Label>
<div className="grid grid-cols-3 gap-2">
<div>
<Label htmlFor="sizeX" className="text-xs text-gray-600">
<Label htmlFor="sizeX" className="text-xs text-foreground">
</Label>
<Input
@@ -182,7 +182,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
/>
</div>
<div>
<Label htmlFor="sizeY" className="text-xs text-gray-600">
<Label htmlFor="sizeY" className="text-xs text-foreground">
</Label>
<Input
@@ -195,7 +195,7 @@ export default function MaterialAddModal({ isOpen, material, onClose, onAdd }: M
/>
</div>
<div>
<Label htmlFor="sizeZ" className="text-xs text-gray-600">
<Label htmlFor="sizeZ" className="text-xs text-foreground">
</Label>
<Input