Skip to content

Commit

Permalink
Fix poor table column width due to breaking words (#31473) (#31477)
Browse files Browse the repository at this point in the history
Backport #31473 by brechtvl

Co-authored-by: Brecht Van Lommel <brecht@blender.org>
Co-authored-by: silverwind <me@silverwind.io>
  • Loading branch information
3 people authored Jun 25, 2024
1 parent d1dd3fa commit 1825c31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web_src/css/markup/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1825c31

Please sign in to comment.