Fix paragraph formatting in the reply-to box (#1257)

This CSS was accidentally deleted back when I was implementing `Article`
support. Now when you reply to something that has paragraph breaks, the paragraph
breaks render correctly.

Fixes #1241
This commit is contained in:
Darius Kazemi 2022-12-28 13:50:12 -08:00 committed by GitHub
parent b2ea7f764c
commit 9be13466eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -925,6 +925,16 @@
}
}
p {
margin-bottom: 1em;
white-space: pre-wrap;
unicode-bidi: plaintext;
&:last-child {
margin-bottom: 0;
}
}
a {
color: $secondary-text-color;
text-decoration: underline;