This commit is contained in:
Mike Francis 2013-02-03 19:32:55 +00:00
commit 9f029ec70d
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
@mixin breakpoint($point) {
@if $point == desktop {
@media (min-width: 1200px) { @content; }
@media screen and (min-width: 1200px) { @content; }
}
@else if $point == tablet-landscape {
@media (min-width: 1024px) { @content; }
@media screen and (min-width: 1024px) { @content; }
}
@else if $point == tablet-portrait {
@media (min-width: 768px) { @content; }
@media screen and (min-width: 768px) { @content; }
}
}