Skip to content

Commit

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

---------

Co-authored-by: silverwind <[email protected]>
  • Loading branch information
brechtvl and silverwind committed Jun 24, 2024
1 parent a4899ff commit 053e582
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 053e582

Please sign in to comment.