for individual card items the className is .van
following is the code i used for grid layout
and key constraint is to have max-width on cards: 23rem
How to avoid that space on right of cards
Any help would be appreciated
.vans-container {
display: grid;
grid-template-columns: repeat(
auto-fill,
minmax(23rem, 23rem)
);
gap: 3rem;
}