Skip to content

Instantly share code, notes, and snippets.

View inostia's full-sized avatar

Joshua C. Jackson inostia

View GitHub Profile
@inostia
inostia / eldritch.css
Last active January 24, 2022 23:46
2 column design for eldritch
@media screen and (max-width: 767px) {
.products.collection-content-wrapper .list-grid {
display: grid;
grid-template-columns: repeat(2,minmax(0,1fr));
grid-column-gap: 3vw;
grid-row-gap: 4vw;
padding: 0;
}
}