Skip to content
- Choosing a selection results in a full page refresh.
/* Equal height product cards for ALL products */
.card--product,
.product-card,
.grid__item .card {
height: 100%;
display: flex;
flex-direction: column;
}
/* Make product info stretch evenly */
.card__content,
.card-information,
.product-card__info,
.card__information {
flex: 1 1 auto;
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* Force equal box height */
.grid__item {
display: flex;
}