From b794d723fd8fee9218dedb797b9ee0d74283edd3 Mon Sep 17 00:00:00 2001 From: Pedro Reis Date: Thu, 27 Feb 2020 16:25:56 +0000 Subject: [PATCH] Update _grid.scss --- assets/styles/base/_grid.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}