From 0cb926bd26579c8835351e8dd5908ce4c84f6b97 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 10 Jul 2026 15:50:56 +0200 Subject: [PATCH] fix: grid-card favorite button too prominent, move next to visibility icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was floating over the cover photo with a circular dark backdrop — too heavy. Moved into the bottom meta row next to the visibility lock icon, plain ghost icon button matching the recipe detail page's style exactly (no background, same size/variant). List and compact rows were already placed there with no backdrop, only the grid card needed this. Co-Authored-By: Claude Sonnet 5 --- apps/web/components/recipe/recipes-grid.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/web/components/recipe/recipes-grid.tsx b/apps/web/components/recipe/recipes-grid.tsx index f4317ee..e371a58 100644 --- a/apps/web/components/recipe/recipes-grid.tsx +++ b/apps/web/components/recipe/recipes-grid.tsx @@ -110,13 +110,6 @@ function GridCard({ recipe, selected, selectMode }: { recipe: Recipe; selected: )} > - {!selectMode && ( -
- - - -
- )}

{recipe.title} @@ -145,7 +138,14 @@ function GridCard({ recipe, selected, selectMode }: { recipe: Recipe; selected: {t(`difficulty.${recipe.difficulty}`)} )}

- +
+ {!selectMode && ( + + + + )} + +
);