From 74b9460ea1f25369fef3996dfc4cce8a1d64377c Mon Sep 17 00:00:00 2001
From: Troy <hello@troylusty.com>
Date: Thu, 13 Feb 2025 19:02:35 +0000
Subject: [PATCH] fix: force prose wrapper max-w-full

---
 src/components/Article.astro | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/components/Article.astro b/src/components/Article.astro
index f09a0eb..b81041d 100644
--- a/src/components/Article.astro
+++ b/src/components/Article.astro
@@ -77,7 +77,9 @@ const listFormatter = new Intl.ListFormat("en-GB", {
       ) : null
     }
   </div>
-  <div class="animate-reveal mx-auto opacity-0 [animation-delay:0.2s]">
+  <div
+    class="animate-reveal mx-auto max-w-full opacity-0 [animation-delay:0.2s]"
+  >
     <Prose>
       <Content />
     </Prose>