Last active
August 29, 2015 14:14
-
-
Save petesmaluck/c3ec4729251e8590719b to your computer and use it in GitHub Desktop.
This file contains 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
section { | |
@include outer-container; | |
.sidebar { | |
@include span-columns(4); | |
@include media($mobile) { | |
display: none; | |
} | |
} | |
.content { | |
@include span-columns(8); | |
@include media($mobile) { | |
@include span-columns(12); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment