Spaces:
Runtime error
Runtime error
Update templates/order.html
#1
by
Subbu1304
- opened
- templates/order.html +7 -2
templates/order.html
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
}
|
30 |
.cart-item {
|
31 |
display: flex;
|
32 |
-
align-items: center;
|
33 |
justify-content: space-between;
|
34 |
background-color: #fffcf5; /* Slightly lighter beige */
|
35 |
border-radius: 8px;
|
@@ -62,6 +62,8 @@
|
|
62 |
font-size: 1.2rem;
|
63 |
font-weight: bold;
|
64 |
color: #2b9348; /* Green for the price */
|
|
|
|
|
65 |
}
|
66 |
.order-summary {
|
67 |
text-align: right;
|
@@ -110,12 +112,15 @@
|
|
110 |
.totsl_bill{
|
111 |
max-width: 768px;
|
112 |
}
|
|
|
|
|
|
|
113 |
</style>
|
114 |
</head>
|
115 |
<body>
|
116 |
<div class="container">
|
117 |
<div class="order-container">
|
118 |
-
<h4 class="mb-4 text-center">Your Order Summary</h4>
|
119 |
|
120 |
{% if order %}
|
121 |
{% for line in order.Order_Details__c.split('\n') %}
|
|
|
29 |
}
|
30 |
.cart-item {
|
31 |
display: flex;
|
32 |
+
/* align-items: center; */
|
33 |
justify-content: space-between;
|
34 |
background-color: #fffcf5; /* Slightly lighter beige */
|
35 |
border-radius: 8px;
|
|
|
62 |
font-size: 1.2rem;
|
63 |
font-weight: bold;
|
64 |
color: #2b9348; /* Green for the price */
|
65 |
+
margin-right:10px;
|
66 |
+
|
67 |
}
|
68 |
.order-summary {
|
69 |
text-align: right;
|
|
|
112 |
.totsl_bill{
|
113 |
max-width: 768px;
|
114 |
}
|
115 |
+
.yourorder{
|
116 |
+
font-family:Serif;
|
117 |
+
}
|
118 |
</style>
|
119 |
</head>
|
120 |
<body>
|
121 |
<div class="container">
|
122 |
<div class="order-container">
|
123 |
+
<h4 class="mb-4 text-center yourorder">Your Order Summary</h4>
|
124 |
|
125 |
{% if order %}
|
126 |
{% for line in order.Order_Details__c.split('\n') %}
|