Skip to content

Commit

Permalink
Merge branch 'master' into 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lavr committed Mar 24, 2017
2 parents 9e41b3b + e9dce19 commit 13fd6e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smart-grid",
"version": "1.0.1",
"version": "1.0.3",
"description": "Smart CSS Grid with different preprocessors: LESS, SCSS, SASS or Stylus",
"main": "index.js",
"dependencies": {},
Expand Down
8 changes: 4 additions & 4 deletions system/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ function Base(resources) {
row: {
display: "flex",
'flex-wrap': "wrap",
'margin-left': "{{var}}offset_one_side",
'margin-right': "{{var}}offset_one_side"
'margin-left': "({{var}}offset_one_side * -1)",
'margin-right': "({{var}}offset_one_side * -1)"
},
rowFloat: {
'margin-left': "{{var}}offset_one_side",
'margin-right': "{{var}}offset_one_side",
'margin-left': "({{var}}offset_one_side * -1)",
'margin-right': "({{var}}offset_one_side * -1)",
'{{call}}clearfix()': null,
},
column: {
Expand Down

0 comments on commit 13fd6e4

Please sign in to comment.