Removed mobile width variable as it isn't used elsewhere

kramdown-and-rouge
Barry Clark 2014-06-01 18:21:46 -04:00
parent 4b6808430d
commit fb61a1d6b6
1 changed files with 3 additions and 6 deletions

View File

@ -19,12 +19,9 @@ $helvetica: Helvetica, Arial, sans-serif;
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
$georgia: Georgia, serif;
// Breakpoints
$mobile-width: 520px !default;
// Mobile breakpoint
// Mobile breakpoints
@mixin mobile {
@media screen and (max-width: $mobile-width) {
@media screen and (max-width: 520px) {
@content;
}
}
}