From 194977660fc2a34980f9038929798cd8bf0c032b Mon Sep 17 00:00:00 2001 From: Roman Grinovski Date: Thu, 2 Nov 2023 19:47:12 +0100 Subject: [PATCH] fix max-width on wide screens (#207) Signed-off-by: Roman Grinovski --- src/components/TextContent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TextContent/index.tsx b/src/components/TextContent/index.tsx index 96e31e4a..8fb44e81 100644 --- a/src/components/TextContent/index.tsx +++ b/src/components/TextContent/index.tsx @@ -8,7 +8,7 @@ const classNames = [ "dark:prose-invert", "lg:prose-lg", - "max-w-full", + "max-w-full md:max-w-prose", "text-gray-900", "dark:text-gray-100",