Fix #83: Very long words can run out of container

overflow-wrap will attempt not to break words if it can help it. It will only break it up when the word is too long to fit onto its own line.
This commit is contained in:
Michael Steenbeek 2018-12-19 16:10:42 +01:00
parent 9191019ce6
commit 3598af243a
2 changed files with 6 additions and 0 deletions

View File

@ -3671,6 +3671,9 @@ code, .rst-content tt, .rst-content code {
@media print {
.wy-breadcrumbs li.wy-breadcrumbs-aside {
display: none; } }
body {
overflow-wrap: break-word; }
.wy-affix {
position: fixed;
top: 1.618em; }

View File

@ -1,3 +1,6 @@
body
overflow-wrap: break-word
.wy-affix
position: fixed
top: $gutter