UX: Break very long words in titles within menus

This commit is contained in:
Kris 2020-03-31 20:55:11 -04:00
parent b79ea986ac
commit 8a527567d3
2 changed files with 2 additions and 1 deletions

View File

@ -186,7 +186,7 @@
padding: 0; padding: 0;
> div { > div {
overflow: hidden; // clears the text from wrapping below icons overflow: hidden; // clears the text from wrapping below icons
overflow-wrap: anywhere;
// Truncate items with more than 2 lines. // Truncate items with more than 2 lines.
display: -webkit-box; display: -webkit-box;
-webkit-line-clamp: 2; -webkit-line-clamp: 2;

View File

@ -265,6 +265,7 @@
} }
.topic-title { .topic-title {
overflow-wrap: anywhere;
margin-right: 0.25em; margin-right: 0.25em;
} }
} }