fix: Avoid list-style none in message-content (#1665)
This commit is contained in:
parent
1aaced3027
commit
114f00b88a
1 changed files with 13 additions and 0 deletions
|
@ -45,3 +45,16 @@ body {
|
||||||
.cursor-pointer {
|
.cursor-pointer {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.message-content {
|
||||||
|
ul {
|
||||||
|
list-style: disc;
|
||||||
|
padding-left: $space-slab;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
list-style: decimal;
|
||||||
|
padding-left: $space-normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue