Created
September 13, 2017 09:46
-
-
Save gemmadlou/26ebe72c8c4a581904521f887240b1e5 to your computer and use it in GitHub Desktop.
Media Queries
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
| // Stolen from awesome dev cboakes | |
| @mixin breakpoint($min-width: null, $min-height: null, $medium: screen) { | |
| @if ($min-width != null and $min-height != null) { | |
| @media #{$medium} and (min-width: $min-width) and (min-height: $min-height) { | |
| @content; | |
| } | |
| } @else if ($min-width != null and $min-height == null) { | |
| @media #{$medium} and (min-width: $min-width){ | |
| @content; | |
| } | |
| } @else if ($min-width == null and $min-height != null) { | |
| @media #{$medium} and (min-height: $min-height){ | |
| @content; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment