From ca2f53aca7fbb1bccd5fd0f3025e8a35d3eb5b9b Mon Sep 17 00:00:00 2001 From: hynseok Date: Wed, 20 Nov 2024 15:57:12 +0900 Subject: [PATCH 1/5] =?UTF-8?q?fix:=20=EA=B3=B5=EC=A7=80=EC=82=AC=ED=95=AD?= =?UTF-8?q?=20=EC=88=98=EC=A0=95=20input=EC=82=AC=EC=9D=B4=EC=A6=88=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AdminNoticeEditForm/AdminNoticeEditForm.module.css | 7 +++++++ .../pages/AdminNoticeEditForm/AdminNoticeEditForm.tsx | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.module.css diff --git a/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.module.css b/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.module.css new file mode 100644 index 0000000..72265ad --- /dev/null +++ b/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.module.css @@ -0,0 +1,7 @@ +.input { + width: 100%; +} + +.input-md { + width: 50%; +} diff --git a/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.tsx b/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.tsx index 359a577..46cc061 100644 --- a/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.tsx +++ b/src/components/pages/AdminNoticeEditForm/AdminNoticeEditForm.tsx @@ -12,6 +12,7 @@ import { isNotEmpty, useForm } from "@mantine/form"; import { useRouter } from "next/navigation"; import { useEffect, useState } from "react"; import { EventImageSection } from "./EventImageSection"; +import classes from "./AdminNoticeEditForm.module.css"; interface NoticeEditFormInputs { title: string; @@ -109,7 +110,12 @@ export function AdminNoticeEditForm({ noticeId, event }: { noticeId?: number; ev
- +