| 1234567891011121314151617181920212223242526272829 |
- <div id="orderCalculator">
- <div class="sidebarIconButtons mobileHide">
- <button class="iconButton" onclick="controller.closeSidebar()">
- <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <line x1="5" y1="12" x2="19" y2="12"></line>
- <polyline points="12 5 19 12 12 19"></polyline>
- </svg>
- </button>
- </div>
- <h1>ORDER CALCULATOR</h1>
- <div class="scroller">
- <table id="calculatorItems" class="calculatorItems" cellspacing="0" cellpadding="5px">
- <thead>
- <th>INGREDIENT</th>
- <th>USAGE / DAY (PREDICTED)</th>
- </thead>
- <tbody id="calculatorItemsBody"></tbody>
- </table>
- </div>
- <template id="calculatorItem">
- <tr class="calculatorItem">
- <td></td>
- <td class="calcUsage"></td>
- </tr>
- </template>
- </div>
|