ucsc / pbsci-wordpress-theme

UCSC Science Division Custom WordPress theme based on Underscores
GNU General Public License v2.0
3 stars 0 forks source link

Set max-width so cards don't grow when less than 3 filtered results #27

Closed knice closed 5 years ago

knice commented 5 years ago

_custom.scss, line 75, change:

grid-template-columns: repeat( auto-fit, minmax(360px, 1fr));

to

grid-template-columns: repeat( auto-fit, minmax(360px, 0fr));

Keeps all of the grid loveliness without blowing out the images and making massive cards on small numbers of search results.

Herm71 commented 5 years ago

This needs some adjustment. class="three-col-grid" needs adjustment on mobile. Change 0fr to 1fr on mobile widths to fix. Selection_027

Selection_028