wujingjing
2024-08-01 1ee0bcc741206079b645c584c578ee543ff75c35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
$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;
 
 
    }
  }
}