From ec3b7e2173654087cdb4d7ff465847687cb70a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrey=20Lesnik=C3=B3v?= Date: Mon, 12 Apr 2021 19:58:07 +0300 Subject: [PATCH 1/3] minima/_layout.scss: Remove black line on top --- sass/minima/_layout.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/sass/minima/_layout.scss b/sass/minima/_layout.scss index a86045140..38051516d 100644 --- a/sass/minima/_layout.scss +++ b/sass/minima/_layout.scss @@ -2,7 +2,6 @@ * Site header */ .site-header { - border-top: 5px solid $grey-color-dark; border-bottom: 1px solid $grey-color-light; min-height: $spacing-unit * 1.865; line-height: $base-line-height * $base-font-size * 2.25; From 3fe3c0befadea32914bbc8f0bcb7f08fefdc6093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrey=20Lesnik=C3=B3v?= Date: Mon, 12 Apr 2021 20:29:55 +0300 Subject: [PATCH 2/3] Revert --- sass/minima/_layout.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/sass/minima/_layout.scss b/sass/minima/_layout.scss index 38051516d..a86045140 100644 --- a/sass/minima/_layout.scss +++ b/sass/minima/_layout.scss @@ -2,6 +2,7 @@ * Site header */ .site-header { + border-top: 5px solid $grey-color-dark; border-bottom: 1px solid $grey-color-light; min-height: $spacing-unit * 1.865; line-height: $base-line-height * $base-font-size * 2.25; From b554dca2cf3ca9a24c2af166a5c00321a545562b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrey=20Lesnik=C3=B3v?= Date: Mon, 12 Apr 2021 20:30:46 +0300 Subject: [PATCH 3/3] _extra.scss: border-top: none --- sass/_extra.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sass/_extra.scss b/sass/_extra.scss index 7b68f1b9d..43c526176 100644 --- a/sass/_extra.scss +++ b/sass/_extra.scss @@ -12,6 +12,11 @@ pre > code { background-color: inherit; } +.site-header { + // To avoid a thick black line on top of the page. + border-top: none; +} + .intro { color: #ffffff; background-color: $brand-color;