Skip to content

Commit 9d10171

Browse files
authored
Merge pull request #35 from souzip/develop
refactor: 모바일 뷰 수정
2 parents 82b8b49 + c44c731 commit 9d10171

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

src/components/admin/NoticeDetailModal.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- src/components/admin/NoticeDetailModal.vue -->
21
<template>
32
<Teleport to="body">
43
<Transition name="modal">
@@ -466,4 +465,10 @@ function getProcessedContent() {
466465
width: 100%;
467466
}
468467
}
468+
469+
@media (max-width: 768px) {
470+
.content-viewer {
471+
min-height: 80px;
472+
}
473+
}
469474
</style>

src/components/admin/NoticeFormModal.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,4 +1102,11 @@ function onClose() {
11021102
.editor-content .ProseMirror [style*='text-align: left'] {
11031103
text-align: left;
11041104
}
1105+
1106+
@media (max-width: 768px) {
1107+
.editor-content .ProseMirror {
1108+
min-height: 150px;
1109+
font-size: 16px;
1110+
}
1111+
}
11051112
</style>

0 commit comments

Comments
 (0)