unlcms / project-herbie

Drupal 10 implementation at the University of Nebraska–Lincoln
https://cms.unl.edu
GNU General Public License v2.0
5 stars 6 forks source link

Reduce grid column size for Person teaser lists #586

Closed skoolbus39 closed 1 month ago

skoolbus39 commented 6 months ago

Reduce minimum size from 20rem to 17.76rem:

Before:

.unlcms-teaser-person-list {
    grid-template-columns: repeat( auto-fit, minmax(20rem, 1fr) );
}

After:

.unlcms-teaser-person-list {
    grid-template-columns: repeat( auto-fit, minmax(17.76rem, 1fr) );
}