File size: 362 Bytes
88be6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Custom CSS for chat message markdown */
.custom-markdown ul {
  list-style-type: disc;
  margin-left: 20px;
}

.custom-markdown ol {
  list-style-type: decimal;
  margin-left: 20px;
}

.custom-markdown li {
  margin-bottom: 5px;
}

.custom-markdown ol ol {
  list-style: lower-alpha;
}

.custom-markdown ul ul,
.custom-markdown ol ol {
  margin-left: 20px;
}