Username Clipping Issue on Index

btmgreg

Well-known member
Affected version
2.3.0
1707613669502.webp
Longer usernames produce a clipping issue and aren't handled that well.

Using latest Edge Version 122.0.2365.16 (Official build) stable app, beta channel (64-bit)

(Apologies if already reported, did a brief search - didn't see anything)
 
Put the following CSS code in the extra.less template and it should solve the issue:

CSS:
.node-extra .node-extra-user a.username {
  word-wrap: break-word;
  text-wrap: wrap;
}
 
Top Bottom