Skip to content

Commit

Permalink
Merge pull request #4 from wide/develop
Browse files Browse the repository at this point in the history
Bump 2.0.2
  • Loading branch information
jdacosta authored Sep 16, 2020
2 parents acfb979 + e7eb29c commit f753d75
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wide/styles-grid",
"version": "2.0.1",
"version": "2.0.2",
"description": "SCSS Modulus UI Grid",
"license": "MIT",
"author": "Sébastien Robillard (https://github.com/robiseb)",
Expand Down
4 changes: 2 additions & 2 deletions src/grids/col.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
@mixin col-common-rules() {
position: relative;
width: 100%;
padding-right: utils.rem($grid-gutter);
padding-left: utils.rem($grid-gutter);
padding-right: utils.rem($grid-gutter / 2);
padding-left: utils.rem($grid-gutter / 2);
}

///
Expand Down
4 changes: 2 additions & 2 deletions src/grids/container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: utils.rem($grid-gutter);
padding-left: utils.rem($grid-gutter);
padding-right: utils.rem($grid-gutter / 2);
padding-left: utils.rem($grid-gutter / 2);
}
} @else {
@error '[style-grids -> styles-grid -> container] : The variable $grid-gutter is undefined';
Expand Down
4 changes: 2 additions & 2 deletions src/grids/row.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
.#{$rows-prefix}row {
display: flex;
flex-wrap: wrap;
margin-right: -#{utils.rem($grid-gutter)};
margin-left: -#{utils.rem($grid-gutter)};
margin-right: -#{utils.rem($grid-gutter / 2)};
margin-left: -#{utils.rem($grid-gutter / 2)};
}
} @else {
@error '[style-grids -> styles-grid -> row] : The variable $grid-gutter is undefined';
Expand Down

0 comments on commit f753d75

Please sign in to comment.