Created
August 7, 2013 00:12
-
-
Save chasewoodford/6170110 to your computer and use it in GitHub Desktop.
Tomeij's Sass media query mixin
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
$devices: tablet 768px, phone 320px; | |
@mixin respond-to($respond-to) { | |
@each $device in $devices { | |
@if nth($device, 1) == $respond-to { | |
@media (max-width: nth($device, 2)) { | |
@content; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment