Created
May 5, 2021 15:33
-
-
Save EvgenyArtemov/615215ac4294a9599d030b6f98930441 to your computer and use it in GitHub Desktop.
Responsive media queries ScSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$small-desktop: 960px; | |
$large-desktop: 1200px; | |
$tablet: 768px; | |
$tablets-landscape: 1024px; | |
$mobile: 480px; | |
$mobile-landscape: 640px; | |
@mixin response($media) { | |
@if $media == largeDesktop { | |
@media only screen and (min-width: $large-desktop) { @content } | |
} | |
@if $media == smallDesktop { | |
@media only screen and (max-width: $small-desktop) { @content; } | |
} | |
@if $media == tablets { | |
@media only screen and (max-width: $tablet) { @content; } | |
} | |
@if $media == tablets-landscape { | |
@media only screen and (min-device-width : $tablet) | |
and (max-device-width : $tablets-landscape) | |
and (orientation : landscape){ @content; } | |
} | |
@if $media == mobile { | |
@media only screen and (max-width: $mobile) { @content; } | |
} | |
@if $media == mobile-portrait { | |
@media only screen and (max-width: $mobile) | |
and (orientation : portrait) { @content; } | |
} | |
@if $media == mobile-landscape { | |
@media only screen and (min-width: 320px) | |
and (max-width: $mobile-landscape) | |
and (orientation : landscape) { @content; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment