Spaces:
Build error
Build error
Update templates/cart.html
Browse files- templates/cart.html +7 -3
templates/cart.html
CHANGED
|
@@ -67,9 +67,7 @@
|
|
| 67 |
font-size: 1.1rem;
|
| 68 |
font-weight: 600;
|
| 69 |
}
|
| 70 |
-
|
| 71 |
-
color: #000 !important; /* Changed from blue to black */
|
| 72 |
-
}
|
| 73 |
.checkout-button {
|
| 74 |
background-color: #0FAA39; /* Green background */
|
| 75 |
color: #fff; /* White text */
|
|
@@ -328,6 +326,12 @@
|
|
| 328 |
.cart-item-actions .text-primary {
|
| 329 |
margin-top: -10px; /* Add space above the price */
|
| 330 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 331 |
|
| 332 |
|
| 333 |
</style>
|
|
|
|
| 67 |
font-size: 1.1rem;
|
| 68 |
font-weight: 600;
|
| 69 |
}
|
| 70 |
+
|
|
|
|
|
|
|
| 71 |
.checkout-button {
|
| 72 |
background-color: #0FAA39; /* Green background */
|
| 73 |
color: #fff; /* White text */
|
|
|
|
| 326 |
.cart-item-actions .text-primary {
|
| 327 |
margin-top: -10px; /* Add space above the price */
|
| 328 |
}
|
| 329 |
+
.cart-item-actions {
|
| 330 |
+
display: flex; /* Use flexbox to align items horizontally */
|
| 331 |
+
align-items: flex-start; /* Align the price at the top of the cart item (like the item name) */
|
| 332 |
+
margin-left: auto; /* This will push the price to the right side of the cart item */
|
| 333 |
+
}
|
| 334 |
+
|
| 335 |
|
| 336 |
|
| 337 |
</style>
|