Skip to content

Instantly share code, notes, and snippets.

@eljamez
Created February 3, 2015 18:13
Show Gist options
  • Save eljamez/788ecf014900ef25b0e9 to your computer and use it in GitHub Desktop.
Save eljamez/788ecf014900ef25b0e9 to your computer and use it in GitHub Desktop.
Breakpoint Mixins for SCSS for easy setup.
// 1120px
@mixin bp-xlarge {@media only screen and (min-width: 80em) {@content;}}
// 960px
@mixin bp-large {@media only screen and (min-width: 64em) {@content;}}
// 640px
@mixin bp-medium {@media only screen and (min-width: 40em) {@content;}}
// 480px
@mixin bp-small {@media only screen and (min-width: 30em) {@content;}}
// special for header (840px)
@mixin bp-header {@media only screen and (min-width: 53em){@content;}}
// special for talbet specific
@mixin bp-tablet {@media only screen and (min-width: 766px){@content;}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment