Add basic support for displaying emotes (#161)

This commit is contained in:
Samuel Dionne-Riel 2021-11-14 00:02:32 -05:00 committed by GitHub
parent b5c5cd9586
commit 14cd84dab7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 3 deletions

View file

@ -410,3 +410,14 @@
}
}
}
.message.message--type-emote {
.message__content {
font-style: italic;
// Remove blockness of first `<p>` so that markdown emotes stay on one line.
p:first-of-type {
display: inline;
}
}
}