fix(markdown): Add margin for all new paragraphs

Before this only `<p>` elements had some top margin applied,
but blocks like code blocks (`pre`) would not have any margin and
were rendered like if they belong to the previous paragraph.

Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2023-03-17 17:17:21 +01:00
Родитель bbf5d0ffb1
Коммит 3ea30191a5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -22,7 +22,7 @@
@mixin markdown-output {
::v-deep {
p:not(:first-child) {
>:not(:first-child) {
margin-top: 1.5em;
}
}