Patch fix for long usernames breaking the compose modal on narrow screens.

Also patch fixes any case where a user has a super long username with no spaces.
This commit is contained in:
Dank Gabs 2019-07-04 14:20:46 -04:00
parent 15938f169c
commit 5cd0a404da

View File

@ -1172,7 +1172,7 @@ a.account__display-name {
max-width: 100%; max-width: 100%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; word-break: break-word;
} }
.display-name__html { .display-name__html {