| 1234567891011121314151617181920212223242526272829 |
- <div id="recipeDetails">
- <div id="recipeDetailsButtons">
- <button class="sidebarIconButton" onclick="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>
- <button class="sidebarIconButton" onclick="recipeBookStrandObj.editRecipe()">
- <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <path d="M12 20h9"></path>
- <path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
- </svg>
- </button>
- </div>
- <h1></h1>
- <div id="recipeIngredients"></div>
- <div class="lineBorder"></div>
- <div id="recipePrice">
- <h3>Price</h3>
-
- <p></p>
- </div>
- </div>
|