Fix an issue with horizontal docs scrolling

This commit is contained in:
Seth Vargo
2016-10-03 16:59:27 -04:00
parent 0d1c47fc9e
commit 3ef448679e

View File

@@ -210,8 +210,15 @@ body.layout-intro{
-webkit-font-smoothing: antialiased;
}
pre{
pre {
margin: 0 0 18px;
// This will force the code to scroll horizontally on small screens
// instead of wrapping.
code {
overflow-wrap: normal;
white-space: pre;
}
}
a{