Commit 1ea3f4e3 authored by Nicolas Coden's avatar Nicolas Coden
Browse files

Use "expand" explicit value for default flex-grid-row size

I often have in my semantic Scss many column definition aligned, and I
think its behaviours could be more understandable with an explicit
value (like `expand`) for columns which take the remaining place,
instead of `null`.
*`expand` would be always the default behaviour*

Something like this, similar to what `foundation-apps` purpose :
```scss
.my-row {
  .col-a { @include flex-grid-column(1); }
  .col-b { @include flex-grid-column(expand); }
  .col-c { @include flex-grid-column(shrink); }
}
```

Instead of
```scss
.my-row {
  .col-a { @include flex-grid-column(1); }
  .col-b { @include flex-grid-column; }
  .col-c { @include flex-grid-column(shrink); }
}
```
parent a28a48b8
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment