Last active
March 16, 2017 19:33
-
-
Save pstonier/7fc465f005d2637c4c94 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
.gallery .item { | |
// Small screen is set to 2 column grid | |
@include media($small-screen) { | |
@include span-columns(2); | |
@include omega(1n); | |
} | |
// Medium screen is set to a 4 column grid | |
@include media($medium-screen) { | |
@include span-columns(2); | |
@include omega(2n); | |
} | |
// Large screen is set to a 8 column grid | |
@include media($large-screen) { | |
@include span-columns(2); | |
@include omega(4n); | |
} | |
// XL screen is set to a 12 column grid | |
@include media($xl-screen) { | |
@include span-columns(3); | |
@include omega(4n); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment