Sha256: 44de171c88b7f1b4ddb0693854139346b0e577346e7f5826e0190d0025760d58
Contents?: true
Size: 391 Bytes
Versions: 77
Compression:
Stored size: 391 Bytes
Contents
$mobile: 600px; $tablet: 800px; $desktop: 1000px; $media-queries: ( mobile: "(max-width: #{$mobile - 1})", tablet-down: "(max-width: #{$desktop - 1})", tablet: "(min-width: #{$mobile} and max-width: #{$tablet - 1})", tablet-up: "(min-width: #{$tablet})", desktop: "(min-width: #{$desktop})" ); @mixin media($key) { @media #{map-get($media-queries, $key)} { @content; } }
Version data entries
77 entries across 77 versions & 1 rubygems