1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-18 20:59:41 +02:00

fix: nutrition info visuals (#5659)

This commit is contained in:
Kuchenpirat 2025-07-08 19:23:41 +02:00 committed by GitHub
parent aad7dc1abd
commit 04eca1b992
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,7 @@
:suffix="labels[key].suffix"
type="number"
autocomplete="off"
variant="underlined"
@update:model-value="updateValue(key, $event)"
/>
</div>
@ -31,15 +32,13 @@
:key="index"
style="min-height: 25px"
>
<div>
<v-list-item-title class="pl-4 caption flex row">
<div>{{ item.label }}</div>
<div class="ml-auto mr-1">
{{ item.value }}
</div>
<div>{{ item.suffix }}</div>
</v-list-item-title>
</div>
<v-list-item-title class="pl-2 d-flex">
<div>{{ item.label }}</div>
<div class="ml-auto mr-1">
{{ item.value }}
</div>
<div>{{ item.suffix }}</div>
</v-list-item-title>
</v-list-item>
</v-list>
</v-card>