Sha256: 0ee5ca10fc32e46772a6e55f7a053cd49e9ada25f34b2c50641c022b0397f5d5
Contents?: true
Size: 463 Bytes
Versions: 407
Compression:
Stored size: 463 Bytes
Contents
// HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/) @mixin hidpi($ratio: 1.3) { @media only screen and (-webkit-min-device-pixel-ratio: $ratio), only screen and (min--moz-device-pixel-ratio: $ratio), only screen and (-o-min-device-pixel-ratio: #{$ratio}/1), only screen and (min-resolution: #{round($ratio*96)}dpi), only screen and (min-resolution: #{$ratio}dppx) { @content; } }
Version data entries
407 entries across 396 versions & 17 rubygems