mirror of https://github.com/tootsuite/mastodon
Fix bad word breaking on conversations (#12039)
* Fix bad word breaking * Fix style * Fix stylepull/12048/head
parent
110bcf1c8d
commit
733a3d20b0
|
@ -6450,7 +6450,6 @@ noscript {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
padding: 10px 5px;
|
padding: 10px 5px;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
word-break: break-all;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
|
@ -6487,5 +6486,9 @@ noscript {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue