From ecea28b22d48b57b3262fceee5ce404e06af9149 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 30 Oct 2018 08:34:35 +0000 Subject: [PATCH] blog: Fix divider Signed-off-by: Michael Tremer --- src/scss/style.scss | 6 +++++- src/templates/blog/modules/posts.html | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/scss/style.scss b/src/scss/style.scss index 120a98a9..59380259 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -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); diff --git a/src/templates/blog/modules/posts.html b/src/templates/blog/modules/posts.html index fc81b48a..094ae38a 100644 --- a/src/templates/blog/modules/posts.html +++ b/src/templates/blog/modules/posts.html @@ -2,6 +2,6 @@ {% module BlogPost(post) %} {% if i < (len(posts) - 1) %} -
+
{% end %} {% end %} -- 2.47.3