Closed
Description
Minima's _base.scss
file resets the margin of the <hr>
tag to zero:
rust-gamedev.github.io/_sass/minima/_base.scss
Lines 4 to 7 in 8dab245
And it results in that Markdown's horizontal line ------
sticks to the next line uncomfortably close:
With this brute-force patch:
$ git diff _sass/
diff --git a/_sass/minima/_base.scss b/_sass/minima/_base.scss
index db7d5a1..cac4ba7 100644
--- a/_sass/minima/_base.scss
+++ b/_sass/minima/_base.scss
@@ -37,6 +37,7 @@ body {
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
+hr,
%vertical-rhythm {
margin-bottom: $spacing-unit / 2;
}
it looks much better to me:
But I'm note sure if that's the correct way of doing it.
Metadata
Metadata
Assignees
Labels
No labels