From c67c2ba7edee5472db0254707eea3d82665001a6 Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Sun, 7 Jun 2026 21:00:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=AA=A8=EB=B0=94=EC=9D=BC=20=EC=97=90?= =?UTF-8?q?=EB=94=94=ED=84=B0=20=ED=8C=9D=EC=97=85=20=EC=A2=8C=EC=B8=A1=20?= =?UTF-8?q?=EC=9E=98=EB=A6=BC=20=E2=80=94=20Toast=20UI=20margin-left:-150p?= =?UTF-8?q?x=20=EC=B7=A8=EC=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Toast UI 가 max-width:480px 에서 popup 에 margin-left:-150px 를 줘 좌측으로 밀려 잘렸음 - 중앙 모달 규칙에 margin:0 !important 추가 → 표/링크 팝업도 화면 중앙에 온전히 표시 Co-Authored-By: Claude Opus 4.8 --- src/components/editor/MarkdownEditor.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/editor/MarkdownEditor.vue b/src/components/editor/MarkdownEditor.vue index ce9afd8..4cea660 100644 --- a/src/components/editor/MarkdownEditor.vue +++ b/src/components/editor/MarkdownEditor.vue @@ -120,6 +120,8 @@ onBeforeUnmount(() => { left: 50% !important; top: 50% !important; right: auto !important; + /* Toast UI 가 max-width:480px 에서 margin-left:-150px 를 줘서 좌측으로 밀려 잘림 → 취소 */ + margin: 0 !important; transform: translate(-50%, -50%) !important; max-width: 94vw !important; max-height: 80vh;