Sha256: faae151fd6714f6a60a56a3c59c2c7a07ee5d8be1ea43456e3bb0d58c82274e1
Contents?: true
Size: 661 Bytes
Versions: 46
Compression:
Stored size: 661 Bytes
Contents
@mixin screen($threshold: max-width, $screen: 1080px) { @media ($threshold: $screen) { @content; } } @mixin desktop { @media (min-width: $bp-med + 1) { @content; } } @mixin mobile { @media (max-width: $bp-sm) { @content; } } @mixin mobile-landscape { @media (max-width: $bp-sm) { @content; } } @mixin tablet { @media (max-width: $bp-med) { @content; } } @mixin tablet-landscape { @media (max-width: $bp-lg) { @content; } } @mixin large-screen { @media (min-width: $bp-xl) { @content; } } @mixin screen-max-height($screen-height: 750px) { @media (max-height: $screen-height) { @content; } }
Version data entries
46 entries across 46 versions & 1 rubygems