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.
pull/95/head
Michael Steenbeek 5 years ago
parent 9191019ce6
commit 3598af243a

@ -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; }

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

Loading…
Cancel
Save