This commit is contained in:
leejh 2019-11-01 17:43:17 +09:00
commit d323168b4f
4 changed files with 21 additions and 1 deletions

View File

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

View File

@ -1,6 +1,8 @@
.bubble-main {
padding: 14px;
text-align:left;
display:flex;
align-items: center;
.icon-recall{
width: 30px;
height: 30px;
@ -13,6 +15,8 @@
i{
color:#ffffff;
font-size:20px;
padding-left: 2px;
padding-top: 2px;
}
}
.recall-msg{

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

@ -160,6 +160,8 @@ $meBox-bg: #ffffff;
position: relative;
display: flex;
flex-direction: row;
margin-right:40px;
margin-left:0;
.profile-img {
flex: 0 0 auto;
img{
@ -170,6 +172,8 @@ $meBox-bg: #ffffff;
&.me {
.chat-row {
flex-direction: row-reverse;
margin-left:40px;
margin-right:0;
.profile-info {
flex-direction: row-reverse;
display: flex;
@ -181,6 +185,7 @@ $meBox-bg: #ffffff;
.message-main {
margin-left: 20px;
margin-right: 10px;
max-width: 80%;
.chat-name {
font-size: 12px;
color: #333333;
@ -193,6 +198,8 @@ $meBox-bg: #ffffff;
background-color: $otherBox-bg;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
word-break: break-all;
word-wrap: break-word;
&:before {
content: '';
width: 0px;
@ -276,3 +283,8 @@ $meBox-bg: #ffffff;
}
}
}
.bubble-main{
word-wrap: break-word;
white-space: pre-wrap;
word-break: keep-all;
}