Sha256: be7db42e9779cb4fa0f6bf608dbdf19c01be1ca7f42c36bb2813cfbb684414c7
Contents?: true
Size: 456 Bytes
Versions: 11
Compression:
Stored size: 456 Bytes
Contents
@mixin mobile { @media screen and (max-width: 900px) { @content; } } @mixin phone { @media screen and (max-width: 700px) { @content; } } @mixin desktop { @media screen and (min-width: 701px) { @content; } } @mixin pad_portrait { @media screen and (max-width: 768px) and (orientation: portrait) { @content; } } @mixin phone_portrait { @media screen and (max-width: 500px) and (orientation: portrait) { @content; } }
Version data entries
11 entries across 11 versions & 1 rubygems