fixup! Reduced split to 380px for 2 col on 1440px monitors

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2018-02-23 18:34:53 +01:00
parent 1d78784449
commit 2c9533296c
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
1 changed files with 2 additions and 1 deletions

View File

@ -232,7 +232,8 @@ $grid-input-height-with-margin: calc(#{$grid-height-unit} - (#{$grid-input-margi
section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(#{$grid-column-width}, 1fr));
/* unquote is a strange hack to avoid removal of the comma by the scss compiler */
grid-template-columns: repeat(auto-fit, minmax(unquote("#{$grid-column-width}"), 1fr));
grid-column-gap: 20px;
}