Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
fix(block-grid): fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
sambhav-gore committed Jun 22, 2016
1 parent a867cb8 commit 1838e22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/styles/grid/_grid-mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@
// @param {String} $column-selector - Selector for column within the row.
@mixin dc-block-grid (
$columns,
$column-selector: '.dc-column'
$column-selector: ".dc-column"
) {
flex-wrap: wrap;

> #{$column-selector} {
$flex-percent: percentage(1/$columns);
$flex-percent: percentage(1 / $columns);

flex: 0 0 $flex-percent;
max-width: $flex-percent;
Expand Down

0 comments on commit 1838e22

Please sign in to comment.