Sha256: 33c9f5bda43dfd43c9c07108a9aabcaffa10bbfeab7120b959758de9ce86ac2f
Contents?: true
Size: 508 Bytes
Versions: 5
Compression:
Stored size: 508 Bytes
Contents
@mixin media-mobile { @media only screen and (max-width : $size-tablet) { @content; } } @mixin media-tablet { @media only screen and (max-width : $size-desktop) { @content; } } @mixin media-desktop { @media only screen and (min-width : $size-desktop+1) { @content; } } @mixin media-hidpi { @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13/10), only screen and (min-resolution: 120dpi) { @content; } }
Version data entries
5 entries across 5 versions & 1 rubygems