Skip to content

Commit

Permalink
Merge pull request jashkenas#647 from brettgoulder/master
Browse files Browse the repository at this point in the history
Just do the media query on the docs for the iPhone 4, not retina macbook pro
  • Loading branch information
jashkenas committed Jun 21, 2012
2 parents 322a641 + f066c79 commit d586d9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@
border-left: 5px solid #bbb;
margin: 0px 0 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 640px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 640px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 640px) {
img {
max-width: 100%;
}
Expand Down

0 comments on commit d586d9c

Please sign in to comment.