mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-03-18 03:14:39 +01:00
UI: Prevent word breaks in tables
This commit is contained in:
parent
a4bef860b6
commit
5833d94d7f
10
css/main.css
10
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue