diff --git a/assets/styles/base/_grid.scss b/assets/styles/base/_grid.scss index c28ccbf..337fdd3 100644 --- a/assets/styles/base/_grid.scss +++ b/assets/styles/base/_grid.scss @@ -12,9 +12,9 @@ @media only screen and #{$declaration} { @for $i from 1 through 6 { &.grid--#{$name}-#{$i}x { - grid-template-columns: repeat(#{$i}, 1fr); + grid-template-columns: repeat(#{$i}, minmax(0, 1fr)); } } } } -} \ No newline at end of file +}