Skip to content

Instantly share code, notes, and snippets.

@Shoekrates
Shoekrates / breakpoint.scss
Created June 8, 2013 13:51
SASS Breakpoint Mixin, mobile-first approach
@mixin breakpoint($point, $value: 0) {
@if $point == mobile {
@media (min-width: 320px) { @content; }
}
@else if $point == mobile-horizontal {
@media (min-width: 480px) { @content; }
}