Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +21 -6
templates/menu.html
CHANGED
|
@@ -40,12 +40,15 @@
|
|
| 40 |
|
| 41 |
|
| 42 |
/* ################################################################################################ */
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
}
|
| 48 |
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
|
| 51 |
|
|
@@ -522,7 +525,7 @@ form-check-input addon-option{
|
|
| 522 |
|
| 523 |
|
| 524 |
|
| 525 |
-
<div class="addbutton">
|
| 526 |
<div class="card-body ">
|
| 527 |
<h5 class="card-title">{{ item.Name }}</h5>
|
| 528 |
<p class="card-text">${{ item.Price__c }}</p>
|
|
@@ -531,7 +534,19 @@ form-check-input addon-option{
|
|
| 531 |
<button class="btn btn-primary ">Add</button>
|
| 532 |
</div>
|
| 533 |
|
| 534 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 535 |
|
| 536 |
|
| 537 |
</div>
|
|
|
|
| 40 |
|
| 41 |
|
| 42 |
/* ################################################################################################ */
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
.addbutton .card-body {
|
| 46 |
+
padding: 10px; /* Adjust as needed */
|
| 47 |
}
|
| 48 |
|
| 49 |
+
.addbutton .btn {
|
| 50 |
+
margin-left: 10px; /* Adds some space between button and text */
|
| 51 |
+
}
|
| 52 |
|
| 53 |
|
| 54 |
|
|
|
|
| 525 |
|
| 526 |
|
| 527 |
|
| 528 |
+
<!-- <div class="addbutton">
|
| 529 |
<div class="card-body ">
|
| 530 |
<h5 class="card-title">{{ item.Name }}</h5>
|
| 531 |
<p class="card-text">${{ item.Price__c }}</p>
|
|
|
|
| 534 |
<button class="btn btn-primary ">Add</button>
|
| 535 |
</div>
|
| 536 |
|
| 537 |
+
</div> -->
|
| 538 |
+
<div class="addbutton">
|
| 539 |
+
<div class="card-body d-flex align-items-center justify-content-between">
|
| 540 |
+
<div>
|
| 541 |
+
<h5 class="card-title">{{ item.Name }}</h5>
|
| 542 |
+
<p class="card-text">${{ item.Price__c }}</p>
|
| 543 |
+
</div>
|
| 544 |
+
<div>
|
| 545 |
+
<button class="btn btn-primary">Add</button>
|
| 546 |
+
</div>
|
| 547 |
+
</div>
|
| 548 |
+
</div>
|
| 549 |
+
|
| 550 |
|
| 551 |
|
| 552 |
</div>
|