Skip to content
Snippets Groups Projects
Commit f4b5fe9c authored by Olivia Mossberg's avatar Olivia Mossberg
Browse files

Fix word-break in account profiles

word-break:break-all is a surefire way to break things. It should be set
to normal.
This merge just set it back to what it should be.
Tested on Firefox 52.0.2 and Chrome 56.0.2924.87 with no detected
errors.
parent 3a62721e
No related branches found
No related tags found
No related merge requests found
......@@ -424,7 +424,7 @@ a.status__content__spoiler-link {
.account__header__content {
word-wrap: break-word;
word-break: break-all;
word-break: normal;
font-weight: 400;
overflow: hidden;
color: $color3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment