Fix margin issue in markup paragraph rendering (#34599)
Some checks failed
release-nightly / nightly-binary (push) Has been cancelled
release-nightly / nightly-docker-rootful (push) Has been cancelled
release-nightly / nightly-docker-rootless (push) Has been cancelled
cron-translations / crowdin-pull (push) Has been cancelled

The Fomantic-inherited `p:last-child` rule in base.css interferes with
this markdown rendering.
This commit is contained in:
silverwind
2025-06-05 07:07:14 +02:00
committed by GitHub
parent 108db0b04f
commit e5781cec75

View File

@@ -134,6 +134,11 @@
margin-bottom: 16px;
}
/* override p:last-child from base.css */
.markup p:last-child {
margin-bottom: 16px;
}
.markup hr {
height: 4px;
padding: 0;