Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
10 changes: 10 additions & 0 deletions docs/components/LogoWithVersion.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down