Merge branch 'khj'
All checks were successful
LocalNet_front/pipeline/head This commit looks good

This commit is contained in:
khj0414 2025-04-08 13:40:22 +09:00
commit 8321793a31

View File

@ -233,10 +233,10 @@ const handleCategoryFocusout = (value) => {
</script>
<style>
.q-editor-container {
max-width: 100%; /* 영역이 넘치지 않게 */
overflow: auto; /* 넘치는 내용은 스크롤로 처리 */
word-wrap: break-word; /* 긴 단어는 자동으로 줄바꿈 */
white-space: normal; /* 내용이 길어지면 자동으로 줄바꿈 */
.q-editor-container * {
max-width: 100% !important;
word-break: break-all !important;
box-sizing: border-box;
white-space: normal !important;
}
</style>