Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +5 -3
templates/menu.html
CHANGED
@@ -56,7 +56,7 @@
|
|
56 |
width: 100px;
|
57 |
background-color: #0FAA39; /* Green button color */
|
58 |
border-color: #0FAA39;
|
59 |
-
text-transform: uppercase; /*
|
60 |
}
|
61 |
.btn-primary:hover {
|
62 |
background-color: #0FAA39;
|
@@ -471,11 +471,13 @@
|
|
471 |
<div class="card-body">
|
472 |
<h5 class="card-title">{{ item.Name }}</h5>
|
473 |
<p class="card-text">${{ item.Price__c }}</p>
|
|
|
474 |
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
|
475 |
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{ item.Section__c }}','{{ selected_category }}')">
|
476 |
-
ADD
|
477 |
</button>
|
478 |
-
|
|
|
479 |
</div>
|
480 |
</div>
|
481 |
</div>
|
|
|
56 |
width: 100px;
|
57 |
background-color: #0FAA39; /* Green button color */
|
58 |
border-color: #0FAA39;
|
59 |
+
text-transform: uppercase; /* Added to ensure button text is uppercase */
|
60 |
}
|
61 |
.btn-primary:hover {
|
62 |
background-color: #0FAA39;
|
|
|
471 |
<div class="card-body">
|
472 |
<h5 class="card-title">{{ item.Name }}</h5>
|
473 |
<p class="card-text">${{ item.Price__c }}</p>
|
474 |
+
<!-- Replaced the button with the new "ADD" button -->
|
475 |
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
|
476 |
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{ item.Section__c }}','{{ selected_category }}')">
|
477 |
+
ADD
|
478 |
</button>
|
479 |
+
<!-- Added the Customisable text below the button -->
|
480 |
+
<div class="customisable-text">Customisable</div>
|
481 |
</div>
|
482 |
</div>
|
483 |
</div>
|