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

Backport #31473 by brechtvl

Co-authored-by: Brecht Van Lommel <brecht@blender.org>
Co-authored-by: silverwind <me@silverwind.io>
pull/31488/head
Giteabot 2024-06-25 08:00:17 +08:00 committed by GitHub
parent d1dd3fa49c
commit 1825c316a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,11 @@
overflow: hidden;
font-size: 16px;
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 {