From 2929f1ed0918df5d7411c5e5fe1489e1fda37cb0 Mon Sep 17 00:00:00 2001 From: Tim deBoer Date: Sun, 29 Oct 2023 08:41:23 -0400 Subject: [PATCH] fix: remove prev/next bar Users don't read documentation like a book anymore, and when there is an obvious next step we're already putting this in a Next Steps section. To avoid the duplication and spending any time trying to make the prev/next bar consistent, we should just remove this bar entirely. As per [1] the Docusaurus feature to allow you to disable prev/next may be coming in a future release, so the only current options are to add pagination_next: null pagination_prev: null in every page, or use custom css to hide the bar. This does the latter. [1] https://github.com/facebook/docusaurus/discussions/6525 Signed-off-by: Tim deBoer --- website/src/css/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 6111311d248..a13107f026f 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -145,6 +145,10 @@ li.footer__item a svg { font-size: 1em; } +.pagination-nav { + display: none; +} + @media (min-width: 1200px) { .navbar__title { font-size: 2em;