Follow-up to 8a52756
for safari
This commit is contained in:
parent
771dec9a44
commit
8bd693891a
|
@ -187,6 +187,10 @@
|
|||
> div {
|
||||
overflow: hidden; // clears the text from wrapping below icons
|
||||
overflow-wrap: anywhere;
|
||||
@supports not (overflow-wrap: anywhere) {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
// Truncate items with more than 2 lines.
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
|
|
|
@ -266,6 +266,9 @@
|
|||
|
||||
.topic-title {
|
||||
overflow-wrap: anywhere;
|
||||
@supports not (overflow-wrap: anywhere) {
|
||||
word-break: break-word;
|
||||
}
|
||||
margin-right: 0.25em;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue