]> cat aescling's git repositories - mastodon.git/commitdiff
Fix word-break in account profiles
authorOlivia Mossberg <hakurou46@gmail.com>
Sun, 2 Apr 2017 14:54:24 +0000 (16:54 +0200)
committerOlivia Mossberg <hakurou46@gmail.com>
Sun, 2 Apr 2017 14:54:24 +0000 (16:54 +0200)
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.

app/assets/stylesheets/components.scss

index 422927195d6c9569eed4cf57bffadcf146572770..f8003e5fd7c26923e57b05576194a6a267c0be4a 100644 (file)
@@ -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;