diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index c6491f0..c7dfb00 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -87,9 +87,6 @@ const base = import.meta.env.BASE_URL; } main { - max-width: var(--width-container); - margin-left: auto; - margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); } diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index 3ff1d24..22e2232 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -41,7 +41,6 @@ const readingTime = post.body ? getReadingTime(post.body) : undefined;