From e96325d23d9357194da32f14f5f1f8c31b0fb55a Mon Sep 17 00:00:00 2001 From: IanDelMar <42134098+IanDelMar@users.noreply.github.com> Date: Mon, 15 Oct 2018 21:05:03 +0200 Subject: [PATCH] Fix inconsistent font-weight If the front page is the main blog page the site title is wrapped in an h1 tag with font-weight equal to 500. On every other page the site title is wrapped in an a tag with font-weight equal to 400. --- sass/understrap/understrap.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sass/understrap/understrap.scss b/sass/understrap/understrap.scss index 7b523bb..85c4841 100644 --- a/sass/understrap/understrap.scss +++ b/sass/understrap/understrap.scss @@ -121,3 +121,5 @@ a.skip-link { color: $navbar-dark-active-color; } } + +.navbar h1 { font-weight: $font-weight-normal; }