Created
December 5, 2018 20:57
-
-
Save rochabianca/abcf016df890a323de5d470e4ccb45ee to your computer and use it in GitHub Desktop.
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
$l-device: 1200px; | |
$m-device: 760px; | |
$s-device: 480px; | |
@mixin d($size) { | |
@if $size == l { | |
@media screen and (min-width: #{$l-device}) { | |
@content; | |
} | |
} | |
@else if $size == m { | |
@media screen and (min-width: #{$m-device}) and (max-width: #{$l-device} - 1) { | |
@content; | |
} | |
} | |
@else if $size == s { | |
@media screen and (max-width: #{$m-device} - 1) { | |
@content; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment