From 3178366e0e9135e5e16832292daac575e54f0f59 Mon Sep 17 00:00:00 2001 From: Frederico Castro Date: Sat, 28 Feb 2026 02:27:27 -0300 Subject: [PATCH] Corrigir truncamento de linhas longas no terminal - Adicionar overflow-wrap: anywhere e min-width: 0 no .content - Adicionar min-width: 0 no .terminal-line para flex shrink correto - Definir overflow-x: hidden no .terminal-body --- public/css/styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/css/styles.css b/public/css/styles.css index 3f9c242..0811b8a 100644 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -1095,15 +1095,18 @@ textarea { flex: 1; padding: 16px; overflow-y: auto; + overflow-x: hidden; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.7; + min-width: 0; } .terminal-line { padding: 2px 0; display: flex; align-items: flex-start; + min-width: 0; } .terminal-line .timestamp { @@ -1117,7 +1120,9 @@ textarea { .terminal-line .content { color: #c8c8d8; word-break: break-all; + overflow-wrap: anywhere; flex: 1; + min-width: 0; } .terminal-line.error .content {