Remove bottom margin from last <p> element in rendered Markdown inside a table cell

This commit is contained in:
Jeremy Stretch 2024-02-09 15:22:33 -05:00
parent 136217e9b2
commit 3aadf59b15
2 changed files with 7 additions and 0 deletions

Binary file not shown.

View File

@ -28,6 +28,13 @@
}
// Remove the bottom margin of <p> elements inside a table cell
td > .rendered-markdown {
p:last-of-type {
margin-bottom: 0;
}
}
// Markdown preview
.markdown-widget {
.preview {