From 96a9c1c3770c0a366b0a5eb19144bac0b75a7746 Mon Sep 17 00:00:00 2001 From: Ubinquitous Date: Mon, 18 Mar 2024 13:34:32 +0900 Subject: [PATCH] =?UTF-8?q?fix(docs):=20=EB=AC=B8=EC=84=9C=20=EC=9C=84?= =?UTF-8?q?=ED=97=98=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(docs)/docs/[title]/Docs.tsx | 6 ++++++ app/(docs)/docs/[title]/style.css.ts | 5 +++++ components/Container/style.css.ts | 5 +++++ components/Editor/index.tsx | 2 +- 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/app/(docs)/docs/[title]/Docs.tsx b/app/(docs)/docs/[title]/Docs.tsx index 886d708b..42ea6e5c 100644 --- a/app/(docs)/docs/[title]/Docs.tsx +++ b/app/(docs)/docs/[title]/Docs.tsx @@ -14,6 +14,12 @@ const Docs = ({ docs }: { docs: DocsItem }) => { }); return (
+ + 문의를 통해 본인 문서의 기재되길 원치않는 특정 내용을 즉시 삭제할 수 있습니다. +
+ 문서 기재로 발생한 이슈에 대해 부마위키 팀은 아무런 책임을 지지 않으며, 수사 기관에 편집 + 기록과 관련된 데이터를 제공할 수 있습니다. +
{/* eslint-disable-next-line react/no-danger */}
diff --git a/app/(docs)/docs/[title]/style.css.ts b/app/(docs)/docs/[title]/style.css.ts index c8286e10..781e98c8 100644 --- a/app/(docs)/docs/[title]/style.css.ts +++ b/app/(docs)/docs/[title]/style.css.ts @@ -42,3 +42,8 @@ export const contributor = style({ textDecoration: "underline", }, }); + +export const warning = style({ + color: theme.red, + ...font.H6, +}); diff --git a/components/Container/style.css.ts b/components/Container/style.css.ts index f35e0967..11938a70 100644 --- a/components/Container/style.css.ts +++ b/components/Container/style.css.ts @@ -74,3 +74,8 @@ export const main = style({ height: "fit-content", ...flex.COLUMN_FLEX, }); + +export const warning = style({ + color: theme.red, + ...font.H6, +}); diff --git a/components/Editor/index.tsx b/components/Editor/index.tsx index d6b32c74..23636a2c 100644 --- a/components/Editor/index.tsx +++ b/components/Editor/index.tsx @@ -218,7 +218,7 @@ const Editor = ({ contents = "", title = "", docsType = "", mode }: EditorPropsT onKeyDown={(e) => setCursorPosition((e.target as HTMLTextAreaElement).selectionStart)} onChange={handleDocsContentsChange} value={docs.contents.replaceAll("
", "\n")} - placeholder="문서 내용을 입력해주세요. 사진 또는 동영상을 넣으려면 파일을 드래그&드롭하세요..." + placeholder="문서 내용을 입력해주세요. 사진 또는 동영상을 넣으려면 파일을 드래그&드롭하세요." className={styles.textarea[String(isExampleOpen)]} />