Skip to content

Commit

Permalink
Just do the media query for the iPhone 4, not retina macbook
Browse files Browse the repository at this point in the history
  • Loading branch information
brettgoulder authored and jashkenas committed Jun 22, 2012
1 parent 1065f2a commit 2a67a5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@
img.example_image { img.example_image {
margin: 0px auto; margin: 0px auto;
} }
@media only screen and (-webkit-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), only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 640px),
only screen and (min-device-pixel-ratio: 1.5) { only screen and (min-device-pixel-ratio: 1.5) and (max-width: 640px) {
img { img {
max-width: 290px; max-width: 290px;
} }
Expand Down

0 comments on commit 2a67a5d

Please sign in to comment.