Spaces:
Sleeping
Sleeping
Update templates/cart.html
Browse files- templates/cart.html +17 -16
templates/cart.html
CHANGED
@@ -129,23 +129,24 @@
|
|
129 |
border-radius: 5px;
|
130 |
}
|
131 |
.suggestion-item button {
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
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 |
|
|
|
129 |
border-radius: 5px;
|
130 |
}
|
131 |
.suggestion-item button {
|
132 |
+
padding: 5px 15px;
|
133 |
+
font-size: 0.9rem;
|
134 |
+
border-radius: 5px; /* Set border radius to 5px */
|
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 |
|