Skip to content

Commit

Permalink
Adds word-wrap: break-word; and -webkit-hyphens: auto; to avoid h…
Browse files Browse the repository at this point in the history
…orizontal scrollers
  • Loading branch information
sparanoid committed Jul 22, 2013
1 parent 13d4771 commit 88a7c5c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ body {
background-color: #fff;
color: #000;
font: 13px "Myriad Pro", "Lucida Grande", Lucida, Verdana, sans-serif;
overflow: auto;
word-wrap: break-word;
-webkit-hyphens: auto;
}

/* links */
Expand Down Expand Up @@ -55,6 +58,8 @@ pre {
margin: 20px 0;
padding: 8px;
text-align: left;
overflow: auto;
word-wrap: normal;
}

hr {
Expand Down

0 comments on commit 88a7c5c

Please sign in to comment.