We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e6f64 commit 62daa74Copy full SHA for 62daa74
1 file changed
src/layouts/Layout.astro
@@ -58,12 +58,14 @@ const isAbout = pageTitle === 'About';
58
)
59
}
60
</head>
61
- <body class='flex min-h-screen flex-col pt-16 bg-white dark:bg-dark-bg'>
+ <body class='min-h-screen flex flex-col pt-16 bg-white dark:bg-dark-bg'>
62
<Header pageTitle={pageTitle} />
63
- <main class='md:mx-auto mx-4 my-12 max-w-3xl grow'>
64
- <Prose>
65
- <slot />
66
- </Prose>
+ <main class='flex-1 my-12'>
+ <div class='max-w-3xl mx-auto px-4 md:px-0'>
+ <Prose>
+ <slot />
67
+ </Prose>
68
+ </div>
69
</main>
70
<Footer />
71
</body>
0 commit comments