aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-14 19:02:48 +0000
committerubq323 <ubq323>2021-06-14 19:02:48 +0000
commit12bcd3de36d12705ec6a4177ab50889ee099442b (patch)
treecaa475e30f6398b1f9e19929579e923b9d8bdaad
parent854b1a93b65b39583e2bf845867ade9a58cb22c2 (diff)
margin should be changed on all elements in a post, not just direct children (this only affects <p> in a <blockquote> i think)
-rw-r--r--apioforum/static/style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css
index 141cb2e..cc37662 100644
--- a/apioforum/static/style.css
+++ b/apioforum/static/style.css
@@ -21,7 +21,7 @@ body { font-family: sans-serif }
font-size: smaller;
}
.post-heading-em { font-weight: bold; }
-.post-content > * { margin-bottom: 8px; margin-top: 8px; }
+.post-content * { margin-bottom: 8px; margin-top: 8px; }
.post-content > *:first-child { margin-top: 2px }
.post-content > *:last-child { margin-bottom: 0}
.post-content { padding: 4px }
@@ -152,4 +152,4 @@ blockquote {
.search-form {
display: inline-block;
-} \ No newline at end of file
+}