Skip to content

Commit

Permalink
Merge pull request #188 from esryl/patch-1
Browse files Browse the repository at this point in the history
Fix missing $class-type in grids
  • Loading branch information
csswizardry committed Mar 20, 2013
2 parents af1ef1a + 92ceba4 commit 1776249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions objects/_grids.scss
Expand Up @@ -90,7 +90,7 @@
* Gutterless grids have all the properties of regular grids, minus any spacing. * Gutterless grids have all the properties of regular grids, minus any spacing.
*/ */
.grid--full{ .grid--full{
@extend #{$class-type}grid; @extend .grid;
margin-left:0; margin-left:0;


> .grid__item{ > .grid__item{
Expand All @@ -104,7 +104,7 @@
* classes. * classes.
*/ */
.grid--center{ .grid--center{
@extend #{$class-type}grid; @extend .grid;
text-align:center; text-align:center;


> .grid__item{ > .grid__item{
Expand Down

0 comments on commit 1776249

Please sign in to comment.