Handle word wrapping properly in posts

* Added overflow-wrap break-word to .Post-body
* Added overflow-wrap normal to pre in .Post-body for code blocks (may change)
This commit is contained in:
David Sevilla Martin 2016-07-24 12:16:00 -04:00
parent 998bb5708e
commit cde5d20c4c
No known key found for this signature in database
GPG Key ID: 5E58124CB6615509

View File

@ -92,6 +92,7 @@
line-height: 1.7;
position: relative;
overflow: auto;
overflow-wrap: break-word;
p, ul, ol, blockquote {
margin-bottom: 1em;
@ -134,6 +135,7 @@
color: #666;
font-size: 90%;
border-radius: @border-radius;
overflow-wrap: normal;
code {
padding: 0;