From cbc57c418e76e5a2faf111336d4001cb93305047 Mon Sep 17 00:00:00 2001 From: Samir Rashid Date: Wed, 18 Sep 2024 17:09:52 +0000 Subject: [PATCH 1/2] Reduce excessive footer padding --- _sass/_footer.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_sass/_footer.scss b/_sass/_footer.scss index e7b18434d8603..379ef9d6d9849 100644 --- a/_sass/_footer.scss +++ b/_sass/_footer.scss @@ -27,9 +27,9 @@ @include clearfix; margin-left: auto; margin-right: auto; - margin-top: 2em; + margin-top: 1em; max-width: 100%; - padding: 0 1em 2em; + padding: 0 1em 1em; @include breakpoint($x-large) { max-width: $x-large; From 3f6ba41e8e2dde112ce7fc41f0d67840ec1028af Mon Sep 17 00:00:00 2001 From: Samir Rashid Date: Wed, 18 Sep 2024 17:10:50 +0000 Subject: [PATCH 2/2] Fix misalignment of navigation bar with post body There was a regression in the template updates where the navigation bar no longer aligns with the post left margin at normal viewport. --- _sass/_masthead.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/_masthead.scss b/_sass/_masthead.scss index 81a04dbac6006..467df09e7da96 100644 --- a/_sass/_masthead.scss +++ b/_sass/_masthead.scss @@ -52,7 +52,7 @@ white-space: nowrap; &--lg { - padding-right: 3em; + padding-right: 2em; font-weight: 700; } } \ No newline at end of file