Created
February 15, 2021 21:13
-
-
Save brendansparrow/a1e0859015b5856205a52ebd99fe752b to your computer and use it in GitHub Desktop.
Sass breakpoint mixins
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 for-phone-only { | |
| @media (max-width: 599px) { @content; } | |
| } | |
| @mixin for-tablet-portrait-up { | |
| @media (min-width: 600px) { @content; } | |
| } | |
| @mixin for-tablet-landscape-up { | |
| @media (min-width: 900px) { @content; } | |
| } | |
| @mixin for-desktop-up { | |
| @media (min-width: 1200px) { @content; } | |
| } | |
| @mixin for-big-desktop-up { | |
| @media (min-width: 1800px) { @content; } | |
| } | |
| // usage | |
| body { | |
| padding: 1rem; | |
| @include for-desktop-up { | |
| padding: 2rem; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment