From 8de4c1985f49334b02e5845d332e372f5a9c8b5c Mon Sep 17 00:00:00 2001 From: Froidefond Julien Date: Tue, 3 Mar 2026 10:14:36 +0100 Subject: [PATCH] feat: update gif mood board column options to 4/5/6 Co-Authored-By: Claude Sonnet 4.6 --- src/components/gif-mood/GifMoodBoard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/gif-mood/GifMoodBoard.tsx b/src/components/gif-mood/GifMoodBoard.tsx index 58d9bdb..04919b9 100644 --- a/src/components/gif-mood/GifMoodBoard.tsx +++ b/src/components/gif-mood/GifMoodBoard.tsx @@ -119,9 +119,9 @@ function WeekRating({ const SECTION_COLORS = ['#ec4899', '#8b5cf6', '#3b82f6', '#10b981', '#f59e0b', '#ef4444']; const GRID_COLS: Record = { - 3: 'grid-cols-1 sm:grid-cols-2 lg:grid-cols-3', 4: 'grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4', 5: 'grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5', + 6: 'grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6', }; function GridIcon({ cols }: { cols: number }) { @@ -184,7 +184,7 @@ export function GifMoodBoard({ {/* Column size control */}
- {[3, 4, 5].map((n) => ( + {[4, 5, 6].map((n) => (