diff --git a/examples/bootstrap/css-gridish/bootstrap-grid.sketch b/examples/bootstrap/css-gridish/bootstrap-grid.sketch index 796db5c..85febed 100644 Binary files a/examples/bootstrap/css-gridish/bootstrap-grid.sketch and b/examples/bootstrap/css-gridish/bootstrap-grid.sketch differ diff --git a/examples/carbon/css-gridish/bx-grid.sketch b/examples/carbon/css-gridish/bx-grid.sketch index 7ecae44..4fcb13c 100644 Binary files a/examples/carbon/css-gridish/bx-grid.sketch and b/examples/carbon/css-gridish/bx-grid.sketch differ diff --git a/examples/material/css-gridish/material-grid.sketch b/examples/material/css-gridish/material-grid.sketch index 64bd654..45fb4f3 100644 Binary files a/examples/material/css-gridish/material-grid.sketch and b/examples/material/css-gridish/material-grid.sketch differ diff --git a/package.json b/package.json index 4936161..d2da5f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "css-gridish", - "version": "1.0.6", + "version": "1.0.7", "description": "Automatically build your grid design’s CSS Grid code, CSS Flexbox fallback code, Sketch artboards, and Chrome extension.", "engines": { diff --git a/src/index.js b/src/index.js index 6a51766..a70a012 100755 --- a/src/index.js +++ b/src/index.js @@ -211,7 +211,7 @@ gulp.task("sketchPage", ["sketchFiles"], function() { const values = sorted[i]; const width = values.breakpoint * config.rem; const margin = parseUnit(values.margin, width); - const gutter = parseUnit(values.gutter); + const gutter = parseUnit(values.gutter, width); const gridWidth = width - margin * 2; const gutterWidth = gutter;