diff --git a/public/css/font.css b/public/css/font.css index 5858175..64d555c 100644 --- a/public/css/font.css +++ b/public/css/font.css @@ -152,7 +152,7 @@ body { /* Consolas 폰트 */ @font-face { font-family: 'Consolas'; - src: url('/font/Consolas.woff') format('woff'); + src: url('/font/Consolas.woff') format('font-woff'); font-weight: normal; font-style: normal; } diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue index 560e758..598a651 100644 --- a/src/components/board/BoardProfile.vue +++ b/src/components/board/BoardProfile.vue @@ -17,7 +17,7 @@ {{ date }} diff --git a/src/components/search/SearchBar.vue b/src/components/search/SearchBar.vue index 392a6b0..9a68666 100644 --- a/src/components/search/SearchBar.vue +++ b/src/components/search/SearchBar.vue @@ -1,17 +1,21 @@ diff --git a/src/components/voteboard/voteCardCheck.vue b/src/components/voteboard/voteCardCheck.vue index aba7b20..540dff7 100644 --- a/src/components/voteboard/voteCardCheck.vue +++ b/src/components/voteboard/voteCardCheck.vue @@ -29,6 +29,7 @@ v-model="item.url" :is-essential="false" class="mb-1" + :maxlength="maxLength" />
@@ -62,6 +63,7 @@ const contentAlerts = ref([false, false]); const titleAlert = ref(false); const title = ref(''); const rink = ref(''); +const maxLength = ref(2000); const { itemList, addItem, removeItem } = voteCommon(true); const total = computed(() => props.total + itemList.value.length); const isSaveDisabled = computed(() => { diff --git a/src/components/voteboard/voteCardCheckList.vue b/src/components/voteboard/voteCardCheckList.vue index 208ed9e..d9f01a1 100644 --- a/src/components/voteboard/voteCardCheckList.vue +++ b/src/components/voteboard/voteCardCheckList.vue @@ -1,6 +1,6 @@