Skip to content

Instantly share code, notes, and snippets.

@sdgluck
Created September 19, 2016 15:15
Show Gist options
  • Save sdgluck/a60fc0e95b0aa75993d40cac83032ca5 to your computer and use it in GitHub Desktop.
Save sdgluck/a60fc0e95b0aa75993d40cac83032ca5 to your computer and use it in GitHub Desktop.
SCSS breakpoint mixins
@mixin tiny {
@at-root {
@media screen and (max-width: 480px) {
@content;
}
}
}
@mixin mobile {
@at-root {
@media screen and (max-width: 768px) {
@content;
}
}
}
@mixin tablet {
@at-root {
@media screen and (max-width: 992px) {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment