$chat-bubble-user-color:#35cfab;
|
$chat-bubble-assistant-color:#ececec;
|
|
$chat-bubble-bg-color:$chat-bubble-user-color;
|
$chat-bubble-border-color:$chat-bubble-user-color;
|
$chat-bubble-arrow-x-offset:-14rpx;
|
$avatar-message-space:17rpx;
|
|
|
.chat-bubble {
|
/* display: none; */
|
font-size: 25rpx;
|
line-height: 30rpx;
|
padding-left: 20rpx;
|
padding-right:20rpx;
|
padding-bottom: 30rpx;
|
position: relative;
|
border-width: 1px;
|
border-style: solid;
|
border-radius: 5px;
|
}
|
|
.chat-bubble:after {
|
content: '';
|
width: 20rpx;
|
height: 20rpx;
|
position: absolute;
|
top: 15rpx;
|
|
transform: rotate(135deg);
|
border-width: 1px;
|
border-style: solid none none solid;
|
}
|
|
.assistant {
|
margin-right: auto;
|
flex-direction: row-reverse;
|
|
.chat-bubble {
|
margin-left: $avatar-message-space;
|
border-color: $chat-bubble-assistant-color;
|
background-color: $chat-bubble-assistant-color;
|
|
&::after {
|
left: $chat-bubble-arrow-x-offset;
|
border-color: $chat-bubble-assistant-color;
|
background-color: $chat-bubble-assistant-color;
|
|
}
|
}
|
}
|
|
.user {
|
margin-left: auto;
|
.chat-bubble {
|
margin-right: $avatar-message-space;
|
|
border-color: $chat-bubble-user-color;
|
background-color: $chat-bubble-user-color;
|
|
&::after {
|
right: $chat-bubble-arrow-x-offset;
|
border-color: $chat-bubble-user-color;
|
background-color: $chat-bubble-user-color;
|
|
|
}
|
}
|
}
|