Content aware class fix

This commit is contained in:
2025-08-14 12:46:12 +02:00
parent c3e9c8631d
commit 4c76496920
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@
<h5>Items Eaten Today</h5>
<div class="list-group list-group-flush">
{% for log in logs %}
<div class="list-group-item item-row d-flex justify-content-between align-items-center bg-dark text-light">
<div class="list-group-item item-row d-flex justify-content-between align-items-center">
<span>({{ log.amount }}g) {{ log.food_item.name }}</span>
<span>{{ log.food_item.energy_100 * log.amount / 100 }} kcal</span>
</div>
@@ -47,7 +47,7 @@
<div class="container-fluid fixed-bottom py-2">
<div class="d-flex p-3">
<!-- Left Button -->
<a href="" class="btn btn-outline-light flex-fill me-2 rounded-pill">
<a href="" class="btn card flex-fill me-2 rounded-pill">
Previous
</a>
@@ -58,7 +58,7 @@
</a>
<!-- Right Button -->
<a href="" class="btn btn-outline-light flex-fill ms-2 rounded-pill">
<a href="" class="btn card flex-fill ms-2 rounded-pill">
Next
</a>
</div>