Last active
April 8, 2018 02:18
-
-
Save joshuaclayton/5842262 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tablet: new-breakpoint(max-width 768px 8); | |
$mobile: new-breakpoint(max-width 480px 8); | |
li.location { | |
@include span-columns(4); | |
@include omega(3n); | |
@include media($tablet) { | |
@include span-columns(4); | |
@include omega(2n); | |
} | |
@include media($mobile) { | |
@include span-columns(8); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tablet-width: 768px; | |
$mobile-width: 480px; | |
$default: new-breakpoint(max-width 3000px min-width $tablet-width+1 12); | |
$tablet: new-breakpoint(max-width $tablet-width min-width $mobile-width+1 8); | |
$mobile: new-breakpoint(max-width $mobile-width 8); | |
li.location { | |
@include media($default) { | |
@include span-columns(4); | |
@include omega(3n); | |
} | |
@include media($tablet) { | |
@include span-columns(4); | |
@include omega(2n); | |
} | |
@include media($mobile) { | |
@include span-columns(8); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment