Skip to content

Commit

Permalink
fix(client): legacy linebreak for old browsers (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
junglesub authored Oct 2, 2024
1 parent 4b8d033 commit b29ad43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/front/src/pages/NewUI.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ body,
margin-top: 8px;
}
.NewUI .FeedItem .content {
white-space: pre;
text-wrap: pretty !important;
white-space: pre-wrap;
word-wrap: break-word; /* Older syntax for wider support */
word-break: break-all;
overflow-wrap: break-word;
overflow-wrap: break-word; /* Modern syntax */
padding-top: 16px;
padding-bottom: 16px;
}
Expand Down

0 comments on commit b29ad43

Please sign in to comment.