Always break on whitespace

This commit is contained in:
Konstantin Schaper
2020-09-01 10:14:04 +02:00
committed by René Pfeuffer
parent 9fba2f301e
commit f6bb7e7b57

View File

@@ -15,10 +15,10 @@ $family-monospace: "Courier New", Monaco, Menlo, "Ubuntu Mono", "source-code-pro
}
.is-word-break {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-break: break-word;
}