Sha256: b20171c172c163b529ab22365ddb5fcd1d28b42602dfdfb6e67a481891e2694c
Contents?: true
Size: 518 Bytes
Versions: 38
Compression:
Stored size: 518 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) { @include _bourbon-deprecate-for-prefixing("hidpi"); @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 * 96dpi)), only screen and (min-resolution: $ratio * 1dppx) { @content; } }
Version data entries
38 entries across 38 versions & 6 rubygems