Skip to content

Commit

Permalink
Fix column mixin
Browse files Browse the repository at this point in the history
Ref: jameskolce/atgrid.css#2
  • Loading branch information
James Kolce committed Dec 5, 2015
1 parent cdd0b3a commit 73e1f56
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/core/utils/_atgrid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,13 @@ $only-semantic: false !default;
box-sizing: border-box;
float: left;
margin-bottom: 0;
width: ($size * 100%);
width: 100%;

@if $size < 1 {
@media (min-width: $bp-small) {
width: ($size * 100%);
}
}

@if $add-gutter {
padding-left: ($gutter / 2) + px;
Expand Down

0 comments on commit 73e1f56

Please sign in to comment.