Merge pull request #275 from amiaopensource/break-lines-for-code-blocks

breaks long long lines for code and dt blocks
This commit is contained in:
Ashley 2017-11-01 11:37:22 -04:00 committed by GitHub
commit affae48547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,6 +120,8 @@ code {
border-radius: 4px;
word-break: break-all;
word-wrap: break-word;
white-space: normal;
display: inline-block;
}
dd {
@ -128,6 +130,10 @@ dd {
dt {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
word-break: break-all;
word-wrap: break-word;
white-space: normal;
display: inline-block;
}
img {