From 733a3d20b089f67ec57b08ddcad19b8de212fd48 Mon Sep 17 00:00:00 2001 From: Cutls Date: Wed, 2 Oct 2019 07:39:56 +0900 Subject: [PATCH] Fix bad word breaking on conversations (#12039) * Fix bad word breaking * Fix style * Fix style --- app/javascript/styles/mastodon/components.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; + } } }