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 6 years ago
parent 9191019ce6
commit 3598af243a

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

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

Loading…
Cancel
Save