mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-05-24 10:18:53 +00:00
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 <git@tdeboer.ca>
This commit is contained in:
parent
2796cebab2
commit
2929f1ed09
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue