Hi there, @Petar_Dietrich ![]()
Yep, this is a natural limitation, since the chat window isnโt supposed to be used for tables. However, here is a CSS code from our devs for a better table display ![]()
table {
width: 100%;
word-wrap: break-word;
table-layout: fixed;
border: 1px solid black;
border-collapse: collapse;
font-size: 14px;
hyphens: auto;
}
table th,
table td {
text-align: center !important;
border: 1px solid black;
padding: 4px;
hyphens: auto;
}
