mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 07:39:41 +02:00
fix: recipe timeline visuals (nuxt 3) (#5608)
This commit is contained in:
parent
6540bfacfe
commit
62c7e2d2fb
1 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,8 @@
|
||||||
:style="maxHeight ? `max-height: ${maxHeight}; overflow-y: auto;` : ''"
|
:style="maxHeight ? `max-height: ${maxHeight}; overflow-y: auto;` : ''"
|
||||||
>
|
>
|
||||||
<v-timeline
|
<v-timeline
|
||||||
:dense="$vuetify.display.smAndDown"
|
:density="$vuetify.display.smAndDown ? ($vuetify.display.xs ? 'compact' : 'comfortable') : undefined"
|
||||||
|
justify="center"
|
||||||
class="timeline"
|
class="timeline"
|
||||||
>
|
>
|
||||||
<RecipeTimelineItem
|
<RecipeTimelineItem
|
||||||
|
@ -78,6 +79,7 @@
|
||||||
:event="event"
|
:event="event"
|
||||||
:recipe="recipes.get(event.recipeId)"
|
:recipe="recipes.get(event.recipeId)"
|
||||||
:show-recipe-cards="showRecipeCards"
|
:show-recipe-cards="showRecipeCards"
|
||||||
|
:width="$vuetify.display.smAndDown ? '100%' : undefined"
|
||||||
@update="updateTimelineEvent(index)"
|
@update="updateTimelineEvent(index)"
|
||||||
@delete="deleteTimelineEvent(index)"
|
@delete="deleteTimelineEvent(index)"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue