Last active
May 26, 2017 07:33
-
-
Save Leneli/44632331a1235fd1dbc57b7c60a025fe to your computer and use it in GitHub Desktop.
media-gueries mixin SCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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