summaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Base.astro10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
index 2aa3d9e..ab5948e 100644
--- a/src/layouts/Base.astro
+++ b/src/layouts/Base.astro
@@ -9,13 +9,9 @@ const { title, description } = Astro.props.frontmatter || Astro.props;
<!doctype html>
<html lang="en">
<Head title={title} description={description} />
- <body>
- <header>
- <Nav />
- </header>
- <div class="main-content">
- <slot />
- </div>
+ <body class="prose lg:prose-xl mx-auto max-w-3/4 lg:max-w-1/2">
+ <Nav />
+ <slot />
<Footer />
</body>
</html>