fix: 모바일 에디터 팝업 좌측 잘림 — Toast UI margin-left:-150px 취소
CI / build (push) Failing after 13m37s

- Toast UI 가 max-width:480px 에서 popup 에 margin-left:-150px 를 줘 좌측으로 밀려 잘렸음
- 중앙 모달 규칙에 margin:0 !important 추가 → 표/링크 팝업도 화면 중앙에 온전히 표시

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-07 21:00:00 +09:00
parent 7276d878dd
commit c67c2ba7ed
+2
View File
@@ -120,6 +120,8 @@ onBeforeUnmount(() => {
left: 50% !important; left: 50% !important;
top: 50% !important; top: 50% !important;
right: auto !important; right: auto !important;
/* Toast UI 가 max-width:480px 에서 margin-left:-150px 를 줘서 좌측으로 밀려 잘림 → 취소 */
margin: 0 !important;
transform: translate(-50%, -50%) !important; transform: translate(-50%, -50%) !important;
max-width: 94vw !important; max-width: 94vw !important;
max-height: 80vh; max-height: 80vh;