Created
April 26, 2023 17:13
-
-
Save odessy/f123c6784cec7d587844fd9eb20e6f60 to your computer and use it in GitHub Desktop.
Pipeline Disable collection toggle grid options for smaller screens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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