Spaces:
Sleeping
Sleeping
Update templates/cart.html
Browse files- templates/cart.html +3 -1
templates/cart.html
CHANGED
@@ -42,13 +42,15 @@
|
|
42 |
border: none; /* Remove the border around the button */
|
43 |
background-color: transparent; /* Transparent background */
|
44 |
cursor: pointer; /* Change cursor to pointer */
|
45 |
-
font-size: 1.
|
46 |
margin-bottom: 10px; /* Add space below the delete icon */
|
47 |
transition: color 0.3s ease; /* Smooth transition for icon color */
|
48 |
position: relative; /* Make it relative for movement */
|
49 |
top: -40px; /* Move the button 10px upwards */
|
50 |
left: 50px; /* Move the button 30px to the right */
|
|
|
51 |
}
|
|
|
52 |
/* Hover effect */
|
53 |
.remove-btn:hover {
|
54 |
color: black; /* Change the icon color to black on hover */
|
|
|
42 |
border: none; /* Remove the border around the button */
|
43 |
background-color: transparent; /* Transparent background */
|
44 |
cursor: pointer; /* Change cursor to pointer */
|
45 |
+
font-size: 1.2rem; /* Slightly decrease the size of the trash icon */
|
46 |
margin-bottom: 10px; /* Add space below the delete icon */
|
47 |
transition: color 0.3s ease; /* Smooth transition for icon color */
|
48 |
position: relative; /* Make it relative for movement */
|
49 |
top: -40px; /* Move the button 10px upwards */
|
50 |
left: 50px; /* Move the button 30px to the right */
|
51 |
+
color: red; /* Set the color to red */
|
52 |
}
|
53 |
+
|
54 |
/* Hover effect */
|
55 |
.remove-btn:hover {
|
56 |
color: black; /* Change the icon color to black on hover */
|