Skip to content

Instantly share code, notes, and snippets.

@cjdsie
Created February 6, 2014 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjdsie/8854239 to your computer and use it in GitHub Desktop.
Save cjdsie/8854239 to your computer and use it in GitHub Desktop.
Wirefy Grid Nested Columns
article {
@include column(8);
ul {
@include row(8);
li {
@include column(4, 8);
}
}
}
aside {
@include column(4);
}
<article>
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</article>
<aside>
</aside>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment