File size: 417 Bytes
ffcde35
 
 
 
 
c821e69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

.add-to-cart-button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* Add transition to the cart icon */
nav .container > div:nth-child(3) > a {
    transition: color 0.3s ease;
}

nav .container > div:nth-child(3) > a:hover {
    color: #FFFF00;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}