You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
Hi, I just wanted to point out that in the Sass version of the grid, the @extend directive is used inside "IE fixes" and the min-width: 40em media query. Because of the way Sass handles @extend this results in the .huge declaration being converted to:
… then, in the IE-specific, and media query declarations, you'd use the same, @include huge; … this produces a CSS document that looks more like the GGS.css that's included in the source.
Hi, I just wanted to point out that in the Sass version of the grid, the
@extenddirective is used inside "IE fixes" and themin-width: 40emmedia query. Because of the way Sass handles@extendthis results in the .huge declaration being converted to:… which I don't think is what's intended. Less has a slightly simpler mixin syntax, but I think this is what you want:
… then, in the IE-specific, and media query declarations, you'd use the same,
@include huge;… this produces a CSS document that looks more like the GGS.css that's included in the source.