Advertisement
soosgyul

Untitled

Aug 16th, 2017
871
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.45 KB | None | 0 0
  1. /* Small Devices, Tablets */
  2. @mixin smallMediumScreen() {
  3.   @media screen and (min-width: 768px) { @content; }
  4. }
  5. @mixin smallMediumScreenOnly() {
  6.   @media screen and (min-width: 768px) and (max-width: 991px) { @content; }
  7. }
  8. /* Medium Devices, Desktops */
  9. @mixin largeScreen() {
  10.   @media screen and (min-width: 992px) { @content; }
  11. }
  12. @mixin smallLargeScreenOnly() {
  13.   @media screen and (min-width: 992px) and (max-width: 1199px) { @content; }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement