Skip to content

Instantly share code, notes, and snippets.

@jlawhorn
Last active December 21, 2015 12:49
Show Gist options
  • Save jlawhorn/6308747 to your computer and use it in GitHub Desktop.
Save jlawhorn/6308747 to your computer and use it in GitHub Desktop.
Magento Responsive Design CSS Breakpoint Media Queries
$small-phone-and-down: "screen and (max-width: " + pxToEm(319) + ")";
$large-phone-and-up: "screen and (min-width: " + pxToEm(400) + ")";
$large-desktop-and-down: "screen and (max-width: #{$width-frame-max})";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment