From 96ba26feba546e111b747215babafd35935ef086 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 21 Dec 2025 13:46:55 -0800 Subject: [PATCH] fix unlimited raids to show 8 character slots --- src/lib/components/grids/CharacterGrid.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/grids/CharacterGrid.svelte b/src/lib/components/grids/CharacterGrid.svelte index 0884fef9..8d7c4a9f 100644 --- a/src/lib/components/grids/CharacterGrid.svelte +++ b/src/lib/components/grids/CharacterGrid.svelte @@ -25,7 +25,7 @@ }: Props = $props() // Dynamic slot count based on unlimited flag - const slotCount = $derived(unlimited ? 7 : 5) + const slotCount = $derived(unlimited ? 8 : 5) import CharacterUnit from '$lib/components/units/CharacterUnit.svelte' @@ -102,7 +102,7 @@ gap: $unit-3x; &.unlimited { - grid-template-columns: repeat(7, minmax(0, 1fr)); + grid-template-columns: repeat(8, minmax(0, 1fr)); } & > li {