Skip to content

Instantly share code, notes, and snippets.

@akagabi
Created December 28, 2017 18:03
Show Gist options
  • Save akagabi/917b9a23ee59a84c88d94cb3678ec4df to your computer and use it in GitHub Desktop.
Save akagabi/917b9a23ee59a84c88d94cb3678ec4df to your computer and use it in GitHub Desktop.
@mixin above($screensize)
@media only screen and (min-width: $screensize)
@content
@mixin below($screensize)
@media only screen and (max-width: $screensize - 1)
@content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment