Sha256: 046fd29ac9d2c2133fcb2dbcaae94be8dc5e4354a50c51debcab7f96b66d667b
Contents?: true
Size: 839 Bytes
Versions: 3
Compression:
Stored size: 839 Bytes
Contents
// =================================== // iPad // =================================== @mixin ipad { @media only screen and (min-width:768px) and (max-width:1024px) { // conditional helpers .ipad-only { display:inline-block !important; } .hide-on-ipad { display:none !important; } .desktop-only { display:none !important; } // spacer overrides .zero-ipad { @include helper_reset(); } .no-padding-ipad, .no-pad-ipad { @include helper_reset(padding, $spacers: padded pad-top pad-right pad-bottom pad-left); } .no-margin-ipad, .no-gap-ipad { @include helper_reset(margin, $spacers: gapped gap-top gap-right gap-bottom gap-left); } @content; } } /////////////////////// // ipad // /////////////////////// @include ipad { // do not remove -- required for ipad helpers }
Version data entries
3 entries across 3 versions & 1 rubygems