대화 내용 단어로 줄바꿈

This commit is contained in:
khk 2019-11-01 17:33:14 +09:00
parent ddd64c4e59
commit 4ba74c0cab
3 changed files with 11 additions and 1 deletions

View File

@ -75,7 +75,6 @@
}
}
.room-option {
width: 100%;
margin-left: auto;
}
}

View File

@ -1,4 +1,9 @@
.bubble-main {
padding: 14px;
text-align:left;
span{
word-wrap: break-word;
white-space: pre-wrap;
word-break: keep-all;
}
}

View File

@ -185,6 +185,7 @@ $meBox-bg: #ffffff;
.message-main {
margin-left: 20px;
margin-right: 10px;
max-width: 80%;
.chat-name {
font-size: 12px;
color: #333333;
@ -282,3 +283,8 @@ $meBox-bg: #ffffff;
}
}
}
.bubble-main{
word-wrap: break-word;
white-space: pre-wrap;
word-break: keep-all;
}