Fix poor table column width due to breaking words (#31473)

Caused by #31091

---------

Co-authored-by: silverwind <me@silverwind.io>
这个提交包含在:
Brecht Van Lommel
2024-06-24 17:48:43 +00:00
提交者 GitHub
共同撰写人 silverwind
父节点 a4899ffa24
当前提交 053e5829a3
+5 -1
查看文件
@@ -2,7 +2,11 @@
overflow: hidden; overflow: hidden;
font-size: 16px; font-size: 16px;
line-height: 1.5 !important; line-height: 1.5 !important;
overflow-wrap: anywhere; overflow-wrap: break-word;
}
.conversation-holder .markup {
overflow-wrap: anywhere; /* prevent overflow in code comments. TODO: properly restrict .conversation-holder width and remove this */
} }
.markup > *:first-child { .markup > *:first-child {