From e7843069f73f62e7a15eb36a951202319aeade59 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 25 Dec 2025 21:01:25 +0000 Subject: [PATCH] fix: remove prose wrapper to allow docs.css styles to apply - Removed prose prose-invert wrapper div that was overriding custom styles - Removed nested text wrapper div - ReactMarkdown now renders directly inside docs-content - This allows .docs-content selectors to properly style h2, p, ul, etc. - Fixes styling mismatch with mockup --- src/app/docs/[...slug]/page.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/app/docs/[...slug]/page.tsx b/src/app/docs/[...slug]/page.tsx index 9cdcc82..1b35537 100644 --- a/src/app/docs/[...slug]/page.tsx +++ b/src/app/docs/[...slug]/page.tsx @@ -112,11 +112,9 @@ export default async function DocPage({ params }: PageProps) { )} -
-
-
    , ol: ({ node, ...props }: any) =>
      , li: ({ node, ...props }: any) =>
    1. , - a: ({ node, ...props }: any) => , - }} - > - {body} - -
-
+ a: ({ node, ...props }: any) => , + }} + > + {body} + {/* Navigation Footer */}