Browse Source

Fix bad word breaking on conversations (#12039)

* Fix bad word breaking

* Fix style

* Fix style
pull/4/head
Cutls 4 years ago
committed by Eugen Rochko
parent
commit
733a3d20b0
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      app/javascript/styles/mastodon/components.scss

+ 4
- 1
app/javascript/styles/mastodon/components.scss View File

@ -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;
}
}
}

Loading…
Cancel
Save