Skip to content

Instantly share code, notes, and snippets.

@Leneli
Last active May 26, 2017 07:33
Show Gist options
  • Select an option

  • Save Leneli/44632331a1235fd1dbc57b7c60a025fe to your computer and use it in GitHub Desktop.

Select an option

Save Leneli/44632331a1235fd1dbc57b7c60a025fe to your computer and use it in GitHub Desktop.
media-gueries mixin SCSS
@mixin tablets() {
@media screen and (max-width: 768px) {
@content;
}
}
@mixin phones() {
@media screen and (max-width: 480px) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment