Skip to content

Instantly share code, notes, and snippets.

@briangonzalez
Created April 30, 2016 17:10
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 briangonzalez/5387c6463aa9fa2d808732ea4f7964a3 to your computer and use it in GitHub Desktop.
Save briangonzalez/5387c6463aa9fa2d808732ea4f7964a3 to your computer and use it in GitHub Desktop.
Simple SASS Breakpoints
@mixin from($bp)
@media only screen and (min-width: $bp + 1px)
@content
@mixin to($bp)
@media only screen and (max-width: $bp)
@content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment