Sha256: 222484812b40f0f05817bc3d0189f7db64b1778270de86be758ffb7c883cb524
Contents?: true
Size: 379 Bytes
Versions: 1
Compression:
Stored size: 379 Bytes
Contents
// Calculate a width using a grid cell @function grid-span($columns, $n) { @return (100% / $columns) * $n; } // Styles for the row containing the columns @mixin grid-row() { text-align: left; width: 100%; max-width: 100%; @include clear-fix; } // Styles for the column @mixin grid-column() { position: relative; min-height: 1px; float: left; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
titon-toolkit-1.0.0.rc1 | scss/toolkit/mixins/_grid.scss |