Skip to content

Commit 73e1f56

Browse files
author
James Kolce
committed
Fix column mixin
Ref: jameskolce/atgrid.css#2
1 parent cdd0b3a commit 73e1f56

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/core/utils/_atgrid.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,13 @@ $only-semantic: false !default;
9292
box-sizing: border-box;
9393
float: left;
9494
margin-bottom: 0;
95-
width: ($size * 100%);
95+
width: 100%;
96+
97+
@if $size < 1 {
98+
@media (min-width: $bp-small) {
99+
width: ($size * 100%);
100+
}
101+
}
96102

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

0 commit comments

Comments
 (0)