Word wrap for OBSchat

Not sure if I’m just remembering things wrong, but the text lines in the chat doesn’t seem to do actual word wrapping anymore and just simply cut up the last word and split it into the next line. I don’t recall this happening in the past but maybe I’m remembering things wrong. I’ve tried adding word-wrap: normal, and break-line via CSS but that doesn’t seem to have any effect. Am I missing something? Thanks for your time.

It looks like it may have changed…

Untested but try: .message {word-break: break-word !important;}

Putting

word-break: break-word !important;

inside the .message works. Was looking for the same and thank you Teak