Created
June 14, 2016 08:31
-
-
Save Ivanopalas/266bee5cb24b2d88f88549233ff9c125 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$tablet-width: 768px; | |
$desktop-width: 1200px; | |
$xl-desctop-width: 1800px; | |
@mixin tablet { | |
@media (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) { | |
@content; | |
} | |
} | |
@mixin desktop { | |
@media (min-width: #{$desktop-width}) and (max-width: #{$xl-desktop-width - 1px}) { | |
@content; | |
} | |
} | |
@mixin xl-desktop { | |
@media (min-width: #{$xl-desktop-width}) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment