Sha256: a31d6f0d9675df6a47f2d518373378002595e9dd9b9b7a138c0864df61baab59
Contents?: true
Size: 600 Bytes
Versions: 133
Compression:
Stored size: 600 Bytes
Contents
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group grid //// /// Set the width of a grid column. /// /// @param {Number|List} $width [$grid-column-count] - Width to make the column. You can pass in any value accepted by the `grid-column()` function, such as `6`, `50%`, or `1 of 2`. @mixin grid-column-size( $columns: $grid-column-count ) { width: grid-column($columns); } /// Shorthand for `grid-column-size()`. /// @alias grid-column-size @mixin grid-col-size( $columns: $grid-column-count ) { @include grid-column-size($columns); }
Version data entries
133 entries across 133 versions & 10 rubygems