I'm a bit new to Foundation and SCSS. I'm trying out the grid Mixin in the example like so:
/* Each individual part that can be added in */
@import "foundation/components/global";
@import "foundation/components/grid";
// @import "foundation/components/visibility";
@import "foundation/components/block-grid";
#masthead { @include grid-row; @include panel;
& > hgroup { @include grid-column(4); }
& > section { @include grid-column(8); }
}
The problem is the generated CSS has the masthead, hgroup, section classes as expected, but there's also all the usual .small-1, .large-2 grid classes etc.
Is there a way to tell SASS not to generate these "extra" classes?