diff --git a/frontend/src/components/ImageUploadModal/index.tsx b/frontend/src/components/ImageUploadModal/index.tsx index f736811..ad80a65 100644 --- a/frontend/src/components/ImageUploadModal/index.tsx +++ b/frontend/src/components/ImageUploadModal/index.tsx @@ -65,51 +65,54 @@ export default function ImageUploadModal({ title, buttonText, onClose }: ImageUp }; return ( -
-
-
- {title} - -
-
-
-
- -

- 파일을 업로드하려면 클릭하거나 -
- 드래그하여 파일을 여기에 놓으세요 -

-
-
- {files.length > 0 && ( -
- setFiles(files.filter((_, i) => i !== index))} - /> -
- )} -
+
+
+

{title}

+ +
+
-
+ {files.length > 0 && ( +
+ setFiles(files.filter((_, i) => i !== index))} + /> +
+ )} +
+
+
);