RefugeRestrooms/refugerestrooms

View on GitHub
app/assets/stylesheets/sass/_screen_sizes.sass

Summary

Maintainability
Test Coverage
$tablet-width: 768px
$desktop-width: 1024px

@mixin tablet
  @media (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px})
    @content

@mixin desktop
  @media (min-width: #{$desktop-width})
    @content