Skip to content

Instantly share code, notes, and snippets.

@thexavismith
Created September 28, 2022 22:18
Show Gist options
  • Save thexavismith/058c47f85053f205f0f8679243e4a68b to your computer and use it in GitHub Desktop.
Save thexavismith/058c47f85053f205f0f8679243e4a68b to your computer and use it in GitHub Desktop.
/*
* Grid
*
*/
.grid {
--grid-columns:;
--grid-gutter:;
align-items: start;
display: grid;
grid-template-columns: var(--grid-columns);
@media (--bp-) {
--grid-columns: ;
}
}
.grid--variant {
--grid-columns: ;
@media (--bp) {
--grid-columns: ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment