Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +3 -2
templates/menu.html
CHANGED
@@ -54,8 +54,9 @@
|
|
54 |
font-weight: bold;
|
55 |
border-radius: 5px;
|
56 |
width: 100px;
|
57 |
-
background-color: #0FAA39; /*
|
58 |
border-color: #0FAA39;
|
|
|
59 |
}
|
60 |
.btn-primary:hover {
|
61 |
background-color: #0FAA39;
|
@@ -472,7 +473,7 @@
|
|
472 |
<p class="card-text">${{ item.Price__c }}</p>
|
473 |
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
|
474 |
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{ item.Section__c }}','{{ selected_category }}')">
|
475 |
-
|
476 |
</button>
|
477 |
<div class="customisable-text">Customisable</div> <!-- Added Customisable text -->
|
478 |
</div>
|
|
|
54 |
font-weight: bold;
|
55 |
border-radius: 5px;
|
56 |
width: 100px;
|
57 |
+
background-color: #0FAA39; /* Green button color */
|
58 |
border-color: #0FAA39;
|
59 |
+
text-transform: uppercase; /* Ensure the button text is uppercase */
|
60 |
}
|
61 |
.btn-primary:hover {
|
62 |
background-color: #0FAA39;
|
|
|
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 <!-- Changed to uppercase -->
|
477 |
</button>
|
478 |
<div class="customisable-text">Customisable</div> <!-- Added Customisable text -->
|
479 |
</div>
|