diff --git a/public/css/custom.css b/public/css/custom.css index eb87ae7..504e790 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -1,5 +1,21 @@ /* 여기에 light css 작성 */ +/* board */ +.board-content img { + max-width: 100% !important; + width: 100% !important; + height: auto !important; + display: block; + object-fit: contain; +} + +.board-content table { + max-width: 100%; + overflow-x: auto; + display: block; +} +/* board end */ + /* 에러페이지 */ /* 전체 화면을 덮는 스타일 */ .error-page { diff --git a/src/views/board/BoardEdit.vue b/src/views/board/BoardEdit.vue index a58cc30..c2d0d09 100644 --- a/src/views/board/BoardEdit.vue +++ b/src/views/board/BoardEdit.vue @@ -50,7 +50,7 @@
- - diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index f1537c9..30539ec 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -55,8 +55,8 @@ 공지 📌 {{ notice.title }} - [ {{ notice.commentCount }} ] - + [ {{ notice.commentCount }} ] + N @@ -288,7 +288,6 @@ onMounted(() => { .comment-count { font-size: 0.9rem; font-weight: bold; - color: #ff5733; border-radius: 4px; padding: 2px 6px; position: relative; diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index 707ac3a..d50a520 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -71,7 +71,7 @@
-
+
@@ -828,24 +828,3 @@ fetchComments(); }); -