Display line breaks inside paragraphs

This should improve rendering of Pleroma markdown posts.
This commit is contained in:
silverpill 2022-10-06 18:37:31 +00:00
parent 9aec17880d
commit a71192e535

View file

@ -87,6 +87,10 @@ function getContent(): string {
padding: $block-inner-padding;
word-wrap: break-word;
:deep(p) {
white-space: pre-wrap;
}
:deep(a) {
@include block-link;
}