Sha256: 151ebeedd73f5de42cdcd9b2d992829630393d84c1272e534145a6377ebeec08
Contents?: true
Size: 299 Bytes
Versions: 7
Compression:
Stored size: 299 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; } }
Version data entries
7 entries across 7 versions & 1 rubygems