Skip to content

Commit

Permalink
Updated mixins to resolve Codekit compiling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Sauve committed Mar 18, 2014
1 parent 40ab3f6 commit c3b0a67
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions styles/_mixins/_bigfoot-mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@

@function prefix-properties($properties, $prefix) {
$new-props: property-checker(nth($properties, 1), $prefix);
@for $i from 2 through length($properties) {
$new-props: $new-props + ", " + property-checker(nth($properties, $i), $prefix);
@if(length($properties) > 1) {
@for $i from 2 through length($properties) {
$new-props: $new-props + ", " + property-checker(nth($properties, $i), $prefix);
}
}
@return unquote($new-props);
}
Expand Down

1 comment on commit c3b0a67

@philgruneich
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works just fine (:

Please sign in to comment.