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
11 changes: 11 additions & 0 deletions website/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,17 @@ body {
padding-bottom: 4rem;
}

@media (max-width: 640px) {
.section-tall {
padding-top: 3rem;
padding-bottom: 3rem;
}
.section-compact {
padding-top: 2rem;
padding-bottom: 2rem;
}
}

/* ---- Badge ---- */
.badge {
display: inline-flex;
Expand Down
14 changes: 10 additions & 4 deletions website/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
const isDocs = $derived($page.url.pathname.startsWith('/docs'));
</script>

<div style="background: var(--background); min-height: 100vh;">
<div class="bg-background min-h-screen">
<!-- Header -->
<header class="site-header">
<div class="max-w-6xl mx-auto px-6 flex items-center justify-between" style="height: 3.5rem;">
<a href="/" class="site-header-link" style="font-weight: 600; color: var(--foreground);">
<div class="max-w-6xl mx-auto px-4 sm:px-6 flex items-center justify-between h-14">
<a href="/" class="site-header-link font-semibold text-foreground">
cora
</a>

Expand All @@ -22,8 +22,14 @@
</a>
</nav>

<!-- Desktop CTA -->
<div class="hidden sm:block">
<a href="/docs/getting-started" class="btn-primary" style="font-size: 13px; padding: 0.375rem 0.875rem;">Get Started</a>
<a href="/docs/getting-started" class="btn-primary text-[13px] px-3.5 py-1.5">Get Started</a>
</div>

<!-- Mobile-only CTA -->
<div class="sm:hidden">
<a href="/docs/getting-started" class="btn-primary text-xs px-3 py-1.5">Get Started</a>
</div>
</div>
</header>
Expand Down
Loading
Loading