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

Caused by #31091

---------

Co-authored-by: silverwind <me@silverwind.io>
pull/31484/head
Brecht Van Lommel 5 months ago committed by GitHub
parent a4899ffa24
commit 053e5829a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      web_src/css/markup/content.css

@ -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 {

Loading…
Cancel
Save