nathansmith / unsemantic

Fluid grid for mobile, tablet, and desktop.
http://unsemantic.com
MIT License
1.38k stars 161 forks source link

mobile-grid hd screen #50

Closed sakulstra closed 10 years ago

sakulstra commented 10 years ago

hay there, when using mobile-grid on a mobile hd-screen(like the lenovo p780) the page won't get re sized. My quick n dirty fix was sth like this:

@media screen and (max-width: $media-mobile-max),screen and (min-resolution: 2.0dppx) and (max-width: $media-mobile-max*2)
  @import "unsemantic-grid-mobile"

@media screen and (min-width: $media-desktop-min*2)and (min-resolution: 2.0dppx),screen and (min-width: $media-desktop-min) and (max-resolution: 1.0dppx)
  @import "unsemantic-grid-desktop"

but isn't perfect at all. Regards Lukas

nathansmith commented 10 years ago

Can you provide screenshots? I'm not sure what to make of this.