Skip to content

Commit

Permalink
feat(recipe lists): Add bottom margin for improved scrolling to grid …
Browse files Browse the repository at this point in the history
…and list

Signed-off-by: Sebastian Fey <info@sebastianfey.de>
  • Loading branch information
seyfeb committed May 4, 2024
1 parent cc855f1 commit 6c27422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/List/RecipesGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div v-if="recipeObjects.length === 0">
<EmptyList />
</div>
<div v-else>
<div v-else style="margin-bottom: 30vh">
<div v-if="showFiltersInRecipeList">
<RecipeFilterControlsModal
v-if="isMobile"
Expand Down
2 changes: 1 addition & 1 deletion src/components/List/RecipesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div v-if="loading" class="mt-12">
<RecipesListLoadingSkeleton :delay="800" />
</div>
<div v-else>
<div v-else style="margin-bottom: 30vh">
<div v-if="showFiltersInRecipeList">
<RecipeFilterControlsModal
v-model="filterControlsValue"
Expand Down

0 comments on commit 6c27422

Please sign in to comment.