Skip to content

Commit

Permalink
Fix flex-flow from inherit to nowrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Simmons committed Apr 8, 2015
1 parent 4b0b45f commit 0d5fbe3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions less/lost.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Lost Grid v5.1.0 - https://github.com/corysimmons/lost
// Lost Grid v5.1.1 - https://github.com/corysimmons/lost

@gutter: 30px;
@rtl: false;
Expand Down Expand Up @@ -69,7 +69,7 @@
flex-flow: row wrap;
}
& when (@direction = column) {
flex-flow: column inherit;
flex-flow: column nowrap;
}
}

Expand Down
4 changes: 2 additions & 2 deletions scss/lost.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Lost Grid v5.1.0 - https://github.com/corysimmons/lost
// Lost Grid v5.1.1 - https://github.com/corysimmons/lost

$gutter: 30px !default;
$rtl: false !default;
Expand Down Expand Up @@ -63,7 +63,7 @@ $flexbox: false !default;
flex-flow: row wrap;
}
@if ($direction == column) {
flex-flow: column inherit;
flex-flow: column nowrap;
}
}

Expand Down
4 changes: 2 additions & 2 deletions stylus/lost.styl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Lost Grid v5.1.0 - https://github.com/corysimmons/lost
// Lost Grid v5.1.1 - https://github.com/corysimmons/lost

$gutter = 30px
$rtl = false
Expand Down Expand Up @@ -58,7 +58,7 @@ flex-container($direction = row)
if $direction is row
flex-flow: row wrap
if $direction is column
flex-flow: column inherit
flex-flow: column nowrap


/**
Expand Down

0 comments on commit 0d5fbe3

Please sign in to comment.