Skip to content

Commit

Permalink
Fix compilation with libsass
Browse files Browse the repository at this point in the history
  • Loading branch information
athaeryn committed Oct 26, 2015
1 parent c5bedc5 commit cbd011f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/base/_widths.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ $grid-widths: (
@mixin grid-setup($namespace: "", $property: width) {
@each $fraction, $widths in $grid-widths {
$selectors: null;
$percent: 100% /(1 / $fraction);
$percent: $fraction * 100%;
@each $width in $widths {
$selectors: append($selectors, unquote(".#{$namespace}#{$width}"), "comma");
}
Expand Down

0 comments on commit cbd011f

Please sign in to comment.