24 lines
419 B
SCSS
24 lines
419 B
SCSS
.bubble {
|
|
background-color: #F0F2F7;
|
|
border-radius: 0px 10px 10px 10px;
|
|
padding: 15rpx;
|
|
position: relative;
|
|
|
|
&.bubble-me {
|
|
border-radius: 10px 0 10px 10px;
|
|
background-color: #CCE2FF;
|
|
}
|
|
|
|
|
|
.callMessage-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #333;
|
|
}
|
|
} |