스타일 수정중

This commit is contained in:
kjs
2025-10-30 12:03:50 +09:00
parent 244f04a199
commit 556354219a
28 changed files with 3210 additions and 321 deletions
@@ -224,6 +224,17 @@ export default function CreateScreenModal({ open, onOpenChange, onCreated }: Cre
<Label htmlFor="screenName"></Label>
<Input id="screenName" value={screenName} onChange={(e) => setScreenName(e.target.value)} />
</div>
<div className="space-y-2">
<Label htmlFor="description"></Label>
<Input
id="description"
value={description}
onChange={(e) => setDescription(e.target.value)}
placeholder="화면 설명을 입력하세요 (모달에 표시됨)"
/>
</div>
<div className="space-y-2">
<Label htmlFor="screenCode"> </Label>
<Input