Created
September 10, 2014 14:24
-
-
Save vernalkick/28ecde774151311bdcd8 to your computer and use it in GitHub Desktop.
Media query to target the iPad at a specific orientation
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
@mixin media-ipad($orientation: false) { | |
@include not-legacy { | |
$orientation-media-declaration: if($orientation, "and (orientation: #{$orientation})"); | |
$media-query: "only screen and (min-device-width: 768px) and (max-device-width: 1024px) #{$orientation-media-declaration}"; | |
@media #{$media-query} { | |
@content; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment