Last active
October 19, 2020 17:48
-
-
Save fredbegin11/e3df16b9fa0973753bc052bed6d749bf to your computer and use it in GitHub Desktop.
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 small-phone { | |
| @media (max-width: 375px) { | |
| @content; | |
| } | |
| } | |
| @mixin phone { | |
| @media (max-width: 767px) { | |
| @content; | |
| } | |
| } | |
| @mixin mobile { | |
| @media (max-width: 1023px) { | |
| @content; | |
| } | |
| } | |
| @mixin laptop { | |
| @media (min-width: 1024px) { | |
| @content; | |
| } | |
| } | |
| @mixin desktop { | |
| @media (min-width: 1441px) { | |
| @content; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment