From b5ba2af96dabef416e173514c9b65fd9ebf5643c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Ara=C3=BAjo?= Date: Sun, 5 May 2024 13:47:40 -0300 Subject: [PATCH 1/2] fix: layout word break --- layouts/layouts.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/layouts.module.css b/layouts/layouts.module.css index eb38a2b56203..cb141cdb5e72 100644 --- a/layouts/layouts.module.css +++ b/layouts/layouts.module.css @@ -215,7 +215,7 @@ main { @apply max-w-[660px] gap-4 - break-all; + break-normal; } } } From a6f45f9bd55ddc827d473168ca27669831382d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Ara=C3=BAjo?= Date: Tue, 7 May 2024 06:42:08 -0300 Subject: [PATCH 2/2] fix: word break normal on lg --- layouts/layouts.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layouts/layouts.module.css b/layouts/layouts.module.css index cb141cdb5e72..0be89d2e45db 100644 --- a/layouts/layouts.module.css +++ b/layouts/layouts.module.css @@ -215,7 +215,8 @@ main { @apply max-w-[660px] gap-4 - break-normal; + break-all + lg:break-normal; } } }