Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Last active March 5, 2018 09:53
Show Gist options
  • Save carolina-vallejo/b36d746f758edb29489f55efdf03965d to your computer and use it in GitHub Desktop.
Save carolina-vallejo/b36d746f758edb29489f55efdf03965d to your computer and use it in GitHub Desktop.
ipad portrait landscape query
@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