From 234e6ccb078a9e9ad6909a29c755f84849fcb987 Mon Sep 17 00:00:00 2001 From: Soam Desai Date: Sun, 13 Sep 2026 19:59:28 -0700 Subject: [PATCH 1/3] docs(footer): breathing room above the footer row; drop its hairline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pagination link sat ~85px above the docs-page footer; the footer container's top padding rises to 136px so the seam matches the design's section rhythm (~220px from pagination to the trademark row). The footer's border-top also needed !important to beat the theme's border-t utility — the hairline above the footer is gone. --- tailwind.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tailwind.css b/tailwind.css index 0892846..7f6779b 100644 --- a/tailwind.css +++ b/tailwind.css @@ -555,14 +555,16 @@ /* The homepage keeps its own hand-built .landing-footer. */ /* ------------------------------------------------------------------ */ #footer.advanced-footer { - border-top: none; + border-top: none !important; } #footer.advanced-footer > div { max-width: 1728px !important; } @media (min-width: 1024px) { #footer.advanced-footer > div { - padding: 48px 96px 64px !important; + /* Generous clearance between the page's last content (pagination) + and the footer row, per the design's section rhythm. */ + padding: 136px 96px 64px !important; } } /* Replace the footer logo with the trademark line from the design. */ From 52c17823c29b701ad50bd91b4d5fefecef38e79e Mon Sep 17 00:00:00 2001 From: Soam Desai Date: Sun, 13 Sep 2026 20:01:45 -0700 Subject: [PATCH 2/3] docs(footer): ease the footer clearance to 96px top padding --- tailwind.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailwind.css b/tailwind.css index 7f6779b..7a31bc3 100644 --- a/tailwind.css +++ b/tailwind.css @@ -564,7 +564,7 @@ #footer.advanced-footer > div { /* Generous clearance between the page's last content (pagination) and the footer row, per the design's section rhythm. */ - padding: 136px 96px 64px !important; + padding: 96px 96px 64px !important; } } /* Replace the footer logo with the trademark line from the design. */ From 9397bcc219af2c7113aecb0a545fe2bf2e1b2b43 Mon Sep 17 00:00:00 2001 From: Soam Desai Date: Sun, 13 Sep 2026 20:03:03 -0700 Subject: [PATCH 3/3] docs(footer): trim footer bottom padding to 48px --- tailwind.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailwind.css b/tailwind.css index 7a31bc3..5fd24fa 100644 --- a/tailwind.css +++ b/tailwind.css @@ -564,7 +564,7 @@ #footer.advanced-footer > div { /* Generous clearance between the page's last content (pagination) and the footer row, per the design's section rhythm. */ - padding: 96px 96px 64px !important; + padding: 96px 96px 48px !important; } } /* Replace the footer logo with the trademark line from the design. */