From 668725f6619fa41a6fc4c04202af1dc737214282 Mon Sep 17 00:00:00 2001 From: Igor Lukanin Date: Mon, 9 Mar 2026 13:21:55 +0100 Subject: [PATCH 1/2] docs: Mobile-friendly styles --- docs/app/globals.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/app/globals.css b/docs/app/globals.css index 29f2ad1f7a4f5..3aa82f205b401 100644 --- a/docs/app/globals.css +++ b/docs/app/globals.css @@ -241,6 +241,18 @@ header nav button:not([aria-label="Menu"]) { align-items: center !important; } +/* Keep search button visible on mobile */ +header.nextra-navbar nav > div.x\:max-md\:hidden:has(button) { + display: flex !important; +} + +/* Hide "Get started for free" button on mobile */ +@media (max-width: 767px) { + header.nextra-navbar nav a[href*="cubecloud.dev/auth/signup"] { + display: none !important; + } +} + /* Purple Banner wrapper - animated reveal */ .pb-wrapper { --purple-banner-font: var(--font-cera-pro), system-ui, -apple-system, sans-serif; From c3ee96586468b135fb691a8f7c3570508c6f1ae0 Mon Sep 17 00:00:00 2001 From: Igor Lukanin Date: Mon, 9 Mar 2026 13:32:55 +0100 Subject: [PATCH 2/2] docs: Mobile-friendly styles --- docs/components/LogoWithVersion.module.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/components/LogoWithVersion.module.css b/docs/components/LogoWithVersion.module.css index a1d0c7fd47e27..0ebab2d345739 100644 --- a/docs/components/LogoWithVersion.module.css +++ b/docs/components/LogoWithVersion.module.css @@ -4,6 +4,16 @@ width: 16rem; /* Match sidebar width (w-64) */ } +@media (max-width: 767px) { + .container { + width: auto; + } + + .version { + display: none; + } +} + .logoLink { display: flex; align-items: center;