From 8b16b0053c9feb166d06f25736778d0741219a9c Mon Sep 17 00:00:00 2001 From: Roman Grinovski Date: Thu, 2 Nov 2023 19:22:33 +0100 Subject: [PATCH] add max-w-full to TextContent (#206) --- src/components/TextContent/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/TextContent/index.tsx b/src/components/TextContent/index.tsx index f7e827bb..96e31e4a 100644 --- a/src/components/TextContent/index.tsx +++ b/src/components/TextContent/index.tsx @@ -8,6 +8,8 @@ const classNames = [ "dark:prose-invert", "lg:prose-lg", + "max-w-full", + "text-gray-900", "dark:text-gray-100",