버튼 문제 수정 및 여러가지

This commit is contained in:
leeheejin
2025-11-05 16:36:32 +09:00
parent c6b2a30651
commit 0b676098a5
85 changed files with 9479 additions and 679 deletions

View File

@@ -4,11 +4,11 @@ import React, { useState, useEffect } from "react";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
} from "@/components/ui/resizable-dialog";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
@@ -104,13 +104,13 @@ export default function CopyScreenModal({ isOpen, onClose, sourceScreen, onCopyS
<Dialog open={isOpen} onOpenChange={handleClose}>
<DialogContent className="sm:max-w-[500px]">
<DialogHeader>
<DialogTitle className="flex items-center gap-2">
<ResizableDialogTitle className="flex items-center gap-2">
<Copy className="h-5 w-5" />
</DialogTitle>
</ResizableDialogTitle>
<DialogDescription>
{sourceScreen?.screenName} . .
</DialogDescription>
</ResizableDialogDescription>
</DialogHeader>
<div className="space-y-4">
@@ -168,7 +168,7 @@ export default function CopyScreenModal({ isOpen, onClose, sourceScreen, onCopyS
</div>
</div>
<DialogFooter>
<ResizableDialogFooter>
<Button variant="outline" onClick={handleClose} disabled={isCopying}>
</Button>
@@ -185,7 +185,7 @@ export default function CopyScreenModal({ isOpen, onClose, sourceScreen, onCopyS
</>
)}
</Button>
</DialogFooter>
</ResizableDialogFooter>
</DialogContent>
</Dialog>
);