I recently noticed that if a long string without spaces is entered in the personal text section of a profile, it looks weird next to long posts.
Example image of post:
Also looks a little weird in the profile page as it makes the avatar section look as wide as the string.
Example image of profile:
I am sure there could be an easy fix for that, with CSS perhaps. For post pages at least, the following code would make it look much better, as with example in image below.
overflow-wrap: break-word;
Example of post with above CSS:For the profile maybe:
Example image of profile with above CSS:Edit: also, it'd be better if the code had classes assigned to those because as it stands CSS can't select them so easily, especially in the profile page. But I'm no CSS wizard so don't just take my word for it. Others might have better advice.
Also, I should point out that I'm not sure if my suggestions would create any unwanted side effects. One difference I notice if the CSS I mention above was to be added, is that, if the string is a cryptocurrency address, it can no longer be copied by double clicking one time as it used to work (at least that's how it is in FF), however clicking it thrice or selecting it whole will allow to copy it whole without any line breaks.