Skip to content

Instantly share code, notes, and snippets.

@gemmadlou
Created September 13, 2017 09:46
Show Gist options
  • Select an option

  • Save gemmadlou/26ebe72c8c4a581904521f887240b1e5 to your computer and use it in GitHub Desktop.

Select an option

Save gemmadlou/26ebe72c8c4a581904521f887240b1e5 to your computer and use it in GitHub Desktop.
Media Queries
// 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