Update advanced_search.pager.css

Adjusted CSS for limit grid display only
This commit is contained in:
Kyle Huynh 2023-03-14 17:14:40 -04:00 committed by GitHub
parent e698a7c6c7
commit 8fbdf55c4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -148,3 +148,10 @@
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) {
.view-grid > .view-content{
display: grid;
grid-template-columns: repeat(3, 1fr);
}
}