UI: Prevent word breaks in tables

This commit is contained in:
oobabooga 2026-03-13 02:56:49 -07:00
parent a4bef860b6
commit 5833d94d7f

View file

@ -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;
}