_breakpoints.scss 511 B

1234567891011121314151617
  1. // breakpoints used throughout the project - use with mixin and js-module
  2. // ======================================================================
  3. // please only use px and em to define breakpoints. px-values will
  4. // automatically be converted to em-mediaqueries in the mixin and
  5. // the provieded javascript-module
  6. $breakpoints: (
  7. s: 480px,
  8. m: 640px,
  9. l: 720px,
  10. xl: 960px,
  11. xxl: 1100px,
  12. xxxl: 1400px,
  13. // to use this, set the second parameter of the mixin to true
  14. custom: '(max-width: 30em)'
  15. );