Update advanced_search.pager.css

This commit is contained in:
Kyle Huynh 2023-03-15 09:47:24 -04:00 committed by GitHub
parent 8fbdf55c4b
commit b7d439e08f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,15 +143,17 @@
display: none; display: none;
} }
.view-grid .view-content{ .view-grid > .view-content{
display: grid; display: grid;
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
/*margin: 0.47214rem 0 0.47214rem 2.61803rem;*/ /*margin: 0.47214rem 0 0.47214rem 2.61803rem;*/
} }
@media only screen and (min-width: 600px) { @media only screen and (max-width: 600px) {
.view-grid > .view-content{ .view-grid > .view-content{
display: grid; display: grid;
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(1, 1fr);
} }
} }