Skip to content

Instantly share code, notes, and snippets.

@sajhd
Created December 2, 2015 15:42
Show Gist options
  • Select an option

  • Save sajhd/8d8a51a738da53f16747 to your computer and use it in GitHub Desktop.

Select an option

Save sajhd/8d8a51a738da53f16747 to your computer and use it in GitHub Desktop.
Breakpoints
$tablet-width : 480px;
$desktop-width : 800px;
$large-width : 1200px;
$full-width : 1600px;
@mixin device480 {
@media (min-width: #{$tablet-width}) {
@content;
}
}
@mixin device800 {
@media (min-width: #{$desktop-width}) {
@content;
}
}
@mixin device1200 {
@media (min-width: #{$large-width}) {
@content;
}
}
@mixin device1600 {
@media (min-width: #{$full-width}) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment