This commit is contained in:
Flatlogic Bot 2025-11-30 20:18:38 +00:00
parent 21376a41c6
commit 976b30c7f2
2 changed files with 10 additions and 3 deletions

View File

@ -460,7 +460,7 @@ footer.bg-light {
}
h1, .h1 { font-size: 2rem; }
h2, .h2 { font-size: 1.75rem; }
h2, .h2 { font-size: 1.5rem; }
h3, .h3 { font-size: 1.5rem; }
.card .btn.edit-recipe {
@ -476,4 +476,11 @@ footer.bg-light {
#print-shopping-list-btn .bi-printer {
font-size: 1rem; /* Restore icon size */
}
/* Make Add Recipe and Add Product buttons same height as Print button on mobile */
#add-product-btn,
.col-md-6:first-child .btn-primary {
padding-top: .375rem;
padding-bottom: .375rem;
}
}

View File

@ -53,7 +53,7 @@
<div class="d-flex justify-content-between align-items-center mb-4">
<h2 class="text-center mb-0">All Recipes</h2>
<button class="btn btn-primary" type="button" data-bs-toggle="modal" data-bs-target="#recipe-form-modal">
<i class="bi bi-plus-lg"></i> Add Recipe
Add Recipe
</button>
</div>
<div class="mb-3">
@ -79,7 +79,7 @@
<div class="d-flex justify-content-between align-items-center mb-4">
<h2 class="text-center mb-0">Shopping List</h2>
<div>
<button id="add-product-btn" class="btn btn-primary me-2" data-bs-toggle="modal" data-bs-target="#add-product-modal"><i class="bi bi-plus-lg"></i> Add Product</button>
<button id="add-product-btn" class="btn btn-primary me-2" data-bs-toggle="modal" data-bs-target="#add-product-modal">Add Product</button>
<button id="print-shopping-list-btn" class="btn btn-outline-secondary btn-sm"><i class="bi bi-printer"></i> Print</button>
</div>
</div>