Skip to content

Instantly share code, notes, and snippets.

@krstivoja
Created June 30, 2021 07:59
Show Gist options
  • Save krstivoja/79b3378ff19d335d1fecb2f8abefdc3b to your computer and use it in GitHub Desktop.
Save krstivoja/79b3378ff19d335d1fecb2f8abefdc3b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
$columns: (
1: 1,
2: 2,
3: 3,
);
@each $number, $col in $columns {
.grid-#{$number} {
grid-template-columns: repeat(#{$col}, 1fr);
}
}
.grid-1 {
grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
{
"sass": {
"compiler": "dart-sass/1.32.12",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment