Skip to content

Instantly share code, notes, and snippets.

@odessy
Created April 26, 2023 17:13
Show Gist options
  • Select an option

  • Save odessy/f123c6784cec7d587844fd9eb20e6f60 to your computer and use it in GitHub Desktop.

Select an option

Save odessy/f123c6784cec7d587844fd9eb20e6f60 to your computer and use it in GitHub Desktop.
Pipeline Disable collection toggle grid options for smaller screens
/* Disable collection toggle grid options for smaller screens */
@media only screen and (max-width: 1180px) {
[data-toggle-grid="3"],
[data-toggle-grid="4"],
[data-toggle-grid="5"],
[data-toggle-grid="6"] {
display: none!important;
}
[data-toggle-grid="1"],
[data-toggle-grid="2"] {
display: block!important;
}
.js-grid[data-grid-large="3"],
.js-grid[data-grid-large="4"],
.js-grid[data-grid-large="5"],
.js-grid[data-grid-large="6"] {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
/* end */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment