Skip to content

Instantly share code, notes, and snippets.

View aeyoll's full-sized avatar

Jean-Philippe Bidegain aeyoll

View GitHub Profile
@aeyoll
aeyoll / input.scss
Created March 27, 2023 09:27
Generated by SassMeister.com.
$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};
}
}