Skip to content

Instantly share code, notes, and snippets.

@hsnaydd
Last active September 12, 2015 07:47
Show Gist options
  • Save hsnaydd/428899938e8fab88869b to your computer and use it in GitHub Desktop.
Save hsnaydd/428899938e8fab88869b to your computer and use it in GitHub Desktop.
Named media Queries
// More : http://davidwalsh.name/write-media-queries-sass
@mixin breakpoint($point) {
@if $point == tablet {
@media (min-width: 768px) and (max-width: 1024px) {
@content;
}
} @else if $point == phone {
@media (max-width: 767px) {
@content;
}
} @else if $point == desktop {
@media (min-width: 1025px) {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment