I'm trying out the new Foundation 6 framework, using SASS, but I'm struggling to understand the grid system. Based on the documentation and other example I've seen what I've done should be a simple 2,1 grid:
@import 'foundation';
/* CUSTOM STYLES */
.container {
@include grid-row(3);
main {
background: $primary-color;
@include grid-column(2);
}
aside {
background: $primary-color;
@include grid-column(1);
}
}
For some reason it results in this:
Grid problem