style.less
726 Bytes
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
.mark-down {
width: auto;
max-width: 60%;
background: #fff;
border-radius: 10px;
padding: 20px;
.group {
margin-bottom: 10px;
}
}
.role {
width: 40px;
height: 28px;
line-height: 28px;
font-size: 14px;
border-radius: 14px;
text-align: center;
}
.text-right {
display: flex;
flex-direction: row-reverse;
padding-right: 2%;
.role {
margin-left: 20px;
background: #0A84FE;
color: #fff;
}
.mark-down {
background: #0A84FE;
color: #fff;
padding: 10px;
}
}
.text-left {
display: flex;
padding-left: 2%;
.role {
margin-right: 20px;
background: #fff;
}
.mark-down {
p {
overflow-wrap:break-word;
word-break: break-all;
}
}
}