_screen.scss 259 B

1234567891011
  1. @mixin breakpoint($point) {
  2. @if $point == mobile {
  3. @media (max-width: 640px) { @content; }
  4. }
  5. @else if $point == tablet {
  6. @media (max-width: 768px) { @content; }
  7. }
  8. @else if $point == laptop {
  9. @media (max-width: 1024px) { @content; }
  10. }
  11. }