From c728626db1e1d86a08a772d309f0771af6668da0 Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Wed, 27 May 2026 10:40:12 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=B1=20fix:=20Ajuste=20de=20layout=20CS?= =?UTF-8?q?S=20para=20evitar=20corte=20de=20tela=20no=20mobile=20(min-widt?= =?UTF-8?q?h,=20overflow-wrap)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/style.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/public/style.css b/public/style.css index a099863..15115e7 100644 --- a/public/style.css +++ b/public/style.css @@ -79,7 +79,7 @@ body { -moz-osx-font-smoothing: grayscale; line-height: 1.5; height: 100vh; - width: 100vw; + width: 100%; } /* ========================================================================== @@ -318,9 +318,10 @@ body { ========================================================================== */ .app-container { display: flex; - width: 100vw; + width: 100%; height: 100vh; position: relative; + overflow: hidden; } /* Menu Lateral / Sidebar */ @@ -756,6 +757,7 @@ body { height: 100%; background-color: var(--bg-primary); position: relative; + min-width: 0; } /* Header */ @@ -975,6 +977,8 @@ body { color: var(--text-primary); font-size: 15px; line-height: 1.6; + word-wrap: break-word; + overflow-wrap: break-word; } .message-content-wrapper {