Spaces:
Sleeping
Sleeping
Update templates/cart.html
Browse files- templates/cart.html +9 -5
templates/cart.html
CHANGED
@@ -132,19 +132,23 @@
|
|
132 |
padding: 5px 15px;
|
133 |
font-size: 0.9rem;
|
134 |
border-radius: 10px;
|
135 |
-
border: 2px solid #
|
136 |
-
color: #0FAA39; /*
|
137 |
background-color: #fff;
|
138 |
font-weight: 600;
|
139 |
height: 44px;
|
140 |
cursor: pointer;
|
141 |
-
transition: background-color 0.3s, color 0.3s;
|
142 |
}
|
|
|
143 |
.suggestion-item button:hover {
|
144 |
-
background-color: #
|
145 |
-
color: #fff;
|
|
|
146 |
}
|
147 |
|
|
|
|
|
148 |
.remove-icon {
|
149 |
border: none;
|
150 |
background: none;
|
|
|
132 |
padding: 5px 15px;
|
133 |
font-size: 0.9rem;
|
134 |
border-radius: 10px;
|
135 |
+
border: 2px solid #0FAA39; /* Set border color to green */
|
136 |
+
color: #0FAA39; /* Text color is green */
|
137 |
background-color: #fff;
|
138 |
font-weight: 600;
|
139 |
height: 44px;
|
140 |
cursor: pointer;
|
141 |
+
transition: background-color 0.3s, color 0.3s, border-color 0.3s;
|
142 |
}
|
143 |
+
|
144 |
.suggestion-item button:hover {
|
145 |
+
background-color: #0FAA39; /* Change background to green on hover */
|
146 |
+
color: #fff; /* Change text color to white on hover */
|
147 |
+
border-color: #0FAA39; /* Keep the border green */
|
148 |
}
|
149 |
|
150 |
+
|
151 |
+
|
152 |
.remove-icon {
|
153 |
border: none;
|
154 |
background: none;
|