The problem is that the ".large-XXX.columns" in the grid is only defined for the "@media screen":
base / _variables.scss: 98
$small: "only screen and (min-width: #{$small-screen})";
base / components / _grid.scss: 153
@media
So what I did was add a line after the /_variables.scss property is enabled, which overrides this:
// This includes all of the foundation global elements that are needed to work with any of the other files. @import "foundation/variables"; $small: "screen and (min-width: #{$small-screen}), print";
Of course, this only works if you donβt automatically include all the bases using @import "basics", but instead include them all manually (i.e. uncomment the corresponding lines in _foundation.scss).
source share