From 5e2f8d8925ffc675866bc809633f62cbbd498166 Mon Sep 17 00:00:00 2001 From: isabel Date: Sat, 9 May 2026 01:04:30 +0100 Subject: [PATCH] fix: use more screen size --- src/pages/blog/[...slug].astro | 2 +- src/styles/global.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index bf108c0..340cfd0 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -36,7 +36,7 @@ const { Content } = await render(post); description={post.data.description} image={`/blog/${post.id}.png`} > -
+

{post.data.title}

diff --git a/src/styles/global.css b/src/styles/global.css index d534572..f6155b8 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -32,7 +32,7 @@ content: none; } - @apply md:max-w-[65ch] max-w-[80vw]; + @apply md:max-w-[70ch] max-w-[80vw] mx-auto; } } -- 2.51.2