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