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
| .wantUserTag {
| display: inline-block;
|
| &-wantUser {
| background: #ebeaea;
| border-radius: 15px;
| padding: 3px 8px 3px 3px;
| display: flex;
| align-items: center;
| position: relative;
|
| &-left {
| width: 26px;
| height: 26px;
| border-radius: 50%;
| color: #ffffff;
| line-height: 26px;
| text-align: center;
| }
|
| &-right {
| margin-left: 8px;
| }
|
| &-close {
| position: absolute;
| font-size: 12px;
| top: -10px;
| right: 0;
| }
| }
|
| &-green {
| background: linear-gradient(135deg, #05aeae, rgba(5, 174, 174, 0.85) 100%);
| }
|
| &-orange {
| background: linear-gradient(135deg, #ff5500, rgba(255, 85, 0, 0.85) 100%);
| }
| }
|
|