Skip to content

Instantly share code, notes, and snippets.

@eduardoboucas
Created March 1, 2015 11:37
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 eduardoboucas/c46aa6ddae9ae402b853 to your computer and use it in GitHub Desktop.
Save eduardoboucas/c46aa6ddae9ae402b853 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// Include Media (v1.1.2)
// ----
@import "include-media";
@mixin mobile-flow() {
@include media("<tablet") {
@content;
}
html.no-videoautoplay {
@content;
}
}
@include mobile-flow() {
color: tomato;
}
@media (max-width: 767px) {
color: tomato;
}
html.no-videoautoplay {
color: tomato;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment