Skip to content

Commit

Permalink
👕 Fix Sass linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Richard committed Mar 16, 2017
1 parent 5d11efe commit 3ba8134
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions sass/griddle/_grid.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@mixin grid($grid, $gap) {
display: grid;
grid-template-columns: $grid;
grid-gap: $gap;
grid-template-columns: $grid;
}

@mixin vertical-grid($grid, $gap) {
display: grid;
grid-template-rows: $grid;
grid-row-gap: $gap;
grid-template-rows: $grid;
}
4 changes: 2 additions & 2 deletions tests/fixtures/grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

@include expect {
display: grid;
grid-template-columns: 100px 1fr 2fr;
grid-gap: 1em;
grid-template-columns: 100px 1fr 2fr;
}
}
}
Expand All @@ -27,8 +27,8 @@

@include expect {
display: grid;
grid-template-rows: repeat(12, 1fr);
grid-row-gap: 1em;
grid-template-rows: repeat(12, 1fr);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/span.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}

@include expect {
grid-column: 1/span 3;
grid-column: 1/span 3; // sass-lint:disable-line space-around-operator
}
}
}
Expand All @@ -24,7 +24,7 @@
}

@include expect {
grid-row: 1/span 3;
grid-row: 1/span 3; // sass-lint:disable-line space-around-operator
}
}
}
Expand Down

0 comments on commit 3ba8134

Please sign in to comment.