This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $columns: 10; | |
| @mixin build-grid() { | |
| @for $param1 from 1 through $columns { | |
| @for $param2 from 2 through ($columns + 1) { | |
| @if ($param2 > $param1) { | |
| .grid-layout-#{$param1}-#{$param2} { | |
| grid-column: #{$param1} / #{$param2}; | |
| } | |
| } |