Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
$gap-horizontal: 10px;
$gap-vertical: $gap-horizontal;
@mixin grid {
@supports(grid-area: auto) {
display: grid;
grid-column-gap: $gap-horizontal;
grid-row-gap: $gap-vertical;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment