Skip to content

Instantly share code, notes, and snippets.

@kaelig
Created November 3, 2015 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaelig/ad6af406b9b60e7df1ad to your computer and use it in GitHub Desktop.
Save kaelig/ad6af406b9b60e7df1ad to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@import 'mq';
test {
width: 319px / 16px * 1em;
width: 320px / 16px * 1em - 0.01em;
@include mq(mobile) {
content: 'mobile and up';
}
@include mq($until: mobile) {
content: 'up to mobile';
}
}
test {
width: 19.9375em;
width: 19.99em;
}
@media (min-width: 20em) {
test {
content: 'mobile and up';
}
}
@media (max-width: 19.99em) {
test {
content: 'up to mobile';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment