Skip to content

Commit

Permalink
Merge pull request #35 from felics/list-breaking
Browse files Browse the repository at this point in the history
Fix libsass 3.3 breaking
  • Loading branch information
felics committed Nov 4, 2015
2 parents d62794a + 660a766 commit 722f095
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hagrid",
"version": "2.0.0",
"version": "2.0.1",
"authors": [
"felics <[email protected]>"
],
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hagrid",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -15,6 +15,6 @@
"gulp-autoprefixer": "^3.1.0",
"gulp-jade": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4"
"gulp-sass": "^2.1.0"
}
}
4 changes: 2 additions & 2 deletions src/_hagrid.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

//////////////////////////////
// hagrid
// HAGRID
// MIT LICENSE © 2015 Felix Spöttel
///////////////////////////////
//////////////////////////////


// Configuration
Expand Down
6 changes: 3 additions & 3 deletions src/hagrid/_core.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

///////////////////////////////
// Core
///////////////////////////////
//////////////////////////////
// CORE
//////////////////////////////

// Static Content
// 1. https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored
Expand Down
8 changes: 6 additions & 2 deletions src/hagrid/_functions.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

///////////////////////////////
// Functions
// FUNCTIONS
///////////////////////////////


Expand Down Expand Up @@ -72,7 +72,11 @@ $hagrid-placeholders: ();
@else {
$width-detected: false;

@each $width in $widths {

@for $i from 1 through length($widths) {

$width: nth($widths,$i);

// * If a general width is passed in, use it
@if type-of($width) == number or $width == auto {
#{$prop}: calculate-width($width);
Expand Down
2 changes: 1 addition & 1 deletion src/hagrid/_modifiers.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

//////////////////////////////
// Modifiers
// MODIFIERS
///////////////////////////////

@mixin grid-modifiers($modifiers...) {
Expand Down

0 comments on commit 722f095

Please sign in to comment.