Update templates/combined_summary.html
Browse files
templates/combined_summary.html
CHANGED
@@ -59,6 +59,7 @@
|
|
59 |
.custom-class {
|
60 |
border-radius: 5px;
|
61 |
border-width:1px;
|
|
|
62 |
padding-bottom: 10px;
|
63 |
border-color:green;
|
64 |
}
|
@@ -165,7 +166,7 @@
|
|
165 |
<!-- Order Items Section -->
|
166 |
{% for item in order_items %}
|
167 |
<!-- Order Item Content -->
|
168 |
-
<div class="text-center border border-green
|
169 |
<img src="{{ item.image_url }}" alt="{{ item.name }}" class="w-full h-48 object-cover rounded-xl" />
|
170 |
<h3 class="text-lg font-semibold">{{ item.name }}</h3>
|
171 |
<p class="text-gray-600 mb-2">${{ "%.2f"|format(item.price) }}</p>
|
|
|
59 |
.custom-class {
|
60 |
border-radius: 5px;
|
61 |
border-width:1px;
|
62 |
+
padding:5px;
|
63 |
padding-bottom: 10px;
|
64 |
border-color:green;
|
65 |
}
|
|
|
166 |
<!-- Order Items Section -->
|
167 |
{% for item in order_items %}
|
168 |
<!-- Order Item Content -->
|
169 |
+
<div class="text-center border border-green rounded-xl custom-class">
|
170 |
<img src="{{ item.image_url }}" alt="{{ item.name }}" class="w-full h-48 object-cover rounded-xl" />
|
171 |
<h3 class="text-lg font-semibold">{{ item.name }}</h3>
|
172 |
<p class="text-gray-600 mb-2">${{ "%.2f"|format(item.price) }}</p>
|