From 5833d94d7fad6739ef72d3c169143fbc977211c2 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 13 Mar 2026 02:56:49 -0700 Subject: [PATCH] UI: Prevent word breaks in tables --- css/main.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/main.css b/css/main.css index a7069f33..30c0d5f5 100644 --- a/css/main.css +++ b/css/main.css @@ -1802,6 +1802,16 @@ table { border-collapse: collapse; } +.message-body table { + display: block; + overflow-x: auto; +} + +.message-body :is(td, th) { + word-break: normal; + overflow-wrap: normal; +} + table, tr, td, th, thead { border: 0; }