Skip to content

Instantly share code, notes, and snippets.

@Krabaton
Created December 18, 2016 12:07
Show Gist options
  • Save Krabaton/4d70dc0fedc88ca31d18be57536379d6 to your computer and use it in GitHub Desktop.
Save Krabaton/4d70dc0fedc88ca31d18be57536379d6 to your computer and use it in GitHub Desktop.
$phone-width: 320px;
$tablet-width: 768px;
$desktop-width: 1200px;
$large-desktop-width: 1800px;
@mixin phone {
@media (min-width: #{$phone-width}) and (max-width: #{$tablet-width - 1px}) {
@content;
}
}
@mixin tablet {
@media (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) {
@content;
}
}
@mixin desktop {
@media (min-width: #{$desktop-width}) and (max-width: #{$large-desktop-width}) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment