How to align add to cart buttons on product page

My Add to Cart buttons are raised or lowered from product to product due to varying title lengths.

https://www.moderntetra.com/collections/all

Here is a link to my page.

I use the Minimal theme.

@isvoltoline21

Please add the following code at the bottom of your assets/theme.scss.liquid file.

Show More

.grid-link__title{

Show More

height: 40px !important;

Show More

}

Hope this works.

hello @isvoltoline21

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 759px){
.template-collection .grid-link__title{
min-height: 40px !important;
}
}