fix: Avoid list-style none in message-content (#1665)

This commit is contained in:
Pranav Raj S 2021-01-19 01:05:15 +05:30 committed by GitHub
parent 1aaced3027
commit 114f00b88a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}