Skip to content

Commit 0fd5392

Browse files
authored
Fix markup content overflow (#34072)
Fix #34069: use `overflow-wrap: anywhere` to correctly wrap overflowed content.
1 parent 2f43544 commit 0fd5392

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

web_src/css/markup/content.css

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
overflow: hidden;
33
font-size: 16px;
44
line-height: 1.5 !important;
5-
overflow-wrap: break-word;
6-
}
7-
8-
.conversation-holder .markup {
9-
overflow-wrap: anywhere; /* prevent overflow in code comments. TODO: properly restrict .conversation-holder width and remove this */
5+
overflow-wrap: anywhere;
106
}
117

128
.markup > *:first-child {

0 commit comments

Comments
 (0)