From 2d8a0caf98834f3393f3cbdf2aa3370897cd1490 Mon Sep 17 00:00:00 2001 From: Olivia Mossberg Date: Sun, 2 Apr 2017 16:54:24 +0200 Subject: [PATCH] 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. --- app/assets/stylesheets/components.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 422927195d..f8003e5fd7 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -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;