]> git.ipfire.org Git - ipfire.org.git/commitdiff
blog: Fix divider
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 30 Oct 2018 08:34:35 +0000 (08:34 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 30 Oct 2018 08:34:35 +0000 (08:34 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/scss/style.scss
src/templates/blog/modules/posts.html

index 120a98a9ff85b8c97cfd619cf36bd58c5af98cc3..59380259bad63d56bd55eca1f70ae94e93623e76 100644 (file)
@@ -231,7 +231,11 @@ section {
        }
 }
 
-// Sidebar navigation
+hr.divider {
+       border-color: rgba($dark, .15);
+       margin-top: 2rem;
+       margin-bottom: 3rem;
+}
 
 .progress {
        background-color: rgba(255, 255, 255, .2);
index fc81b48a08a32220875aee14ca1d36a5880909e1..094ae38ac680f0402886b02bbfc01a0ade920c3f 100644 (file)
@@ -2,6 +2,6 @@
     {% module BlogPost(post) %}
 
     {% if i < (len(posts) - 1) %}
-        <div class="divider"></div>
+        <hr class="divider">
     {% end %}
 {% end %}