Merged
Conversation
couldn't select the docs from the mobile slideout
Changes Made
sidebar.html — Mobile sidebar slide-in panel
- Added CSS that makes the sidebar a fixed slide-in panel on mobile (below 1280px/xl). It uses transform: translateX(-100%) to hide off-screen
and slides in when .mobile-sidebar-open is toggled.
- Added a dark overlay (.sidebar-mobile-overlay) that appears behind the sidebar and closes it when tapped.
- Added a mobile-only header inside the sidebar with:
- Section selector (Standalone / Kubernetes tabs) — the current section is highlighted, the other links to the equivalent version in the
other section
- Version picker — shows all configured versions with the active one highlighted
- These mobile elements are hidden on xl+ screens via @media (min-width: 1280px) rule.
nav.html — Sidebar toggle + mobile nav fixes
JS additions:
- toggleMobileSidebar() — toggles the sidebar panel and overlay
- closeMobileSidebar() — closes the sidebar (called by overlay click)
- openMobileNav() now calls closeMobileSidebar() first so the two panels don't overlap
Docs mobile nav bar:
- Added a sidebar toggle icon (three horizontal lines, middle one shorter) on the left side of the mobile nav bar, before the logo. Only
renders on docs pages.
Landing page + docs mobile slide-out nav:
- Changed justify-end → pt-24 pb-8 overflow-y-auto so links flow from top with proper padding (no longer pushed to bottom where they can be
clipped on short screens)
- Added Standalone/Kubernetes sub-links under "Docs" in the landing page mobile nav (previously only had "Docs" link without sub-items)
Signed-off-by: Art Berger <art.berger@solo.io>
Deploying agentproxy with
|
| Latest commit: |
e515a64
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://b279b372.agentproxy.pages.dev |
| Branch Preview URL: | https://adb-mobile.agentproxy.pages.dev |
kristin-kronstain-brown
approved these changes
Mar 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
couldn't select the docs from the mobile slideout, closes: #165
Before
After
Sidebar view

Changes Made
sidebar.html — Mobile sidebar slide-in panel
nav.html — Sidebar toggle + mobile nav fixes
JS additions:
Docs mobile nav bar:
Landing page + docs mobile slide-out nav: