diff options
author | Cutls <web-pro@cutls.com> | 2019-10-02 07:39:56 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-10-02 00:39:56 +0200 |
commit | 733a3d20b089f67ec57b08ddcad19b8de212fd48 (patch) | |
tree | 5a504511a2ce4fa136ec538b928815153d5f4cb6 /app | |
parent | 110bcf1c8da1edf6ba0f96ef4529c733c5b1146b (diff) |
Fix bad word breaking on conversations (#12039)
* Fix bad word breaking * Fix style * Fix style
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index f5dbe3f5c..433370dfd 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -6450,7 +6450,6 @@ noscript { flex: 1 1 auto; padding: 10px 5px; padding-right: 15px; - word-break: break-all; overflow: hidden; &__info { @@ -6487,5 +6486,9 @@ noscript { } } } + + a { + word-break: break-word; + } } } |