diff --git a/website/src/app.css b/website/src/app.css index f9d23c0..01e1e4d 100644 --- a/website/src/app.css +++ b/website/src/app.css @@ -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; diff --git a/website/src/routes/+layout.svelte b/website/src/routes/+layout.svelte index dc5081f..d4dbb27 100644 --- a/website/src/routes/+layout.svelte +++ b/website/src/routes/+layout.svelte @@ -7,11 +7,11 @@ const isDocs = $derived($page.url.pathname.startsWith('/docs')); -