how to show 'Add to Cart' button only on hover

i want to make my Add to cart button in product cart show only on hover in dawn them

here the site link :https://b6448a-44.myshopify.com/

Hi @ai41

You can do this by adding those code to Custom CSS in Online Store > Themes > Customize > Theme settings

@media (min-width: 750px) {
.quick-add { opacity: 0; }
.card:hover .quick-add { opacity: 1; }
}