Last active
March 5, 2018 09:53
-
-
Save carolina-vallejo/b36d746f758edb29489f55efdf03965d to your computer and use it in GitHub Desktop.
ipad portrait landscape query
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 rsp_ipad_port { | |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { | |
@content; | |
} | |
} | |
@mixin rsp_ipad-land { | |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment