fix unlimited raids to show 8 character slots

This commit is contained in:
Justin Edmund 2025-12-21 13:46:55 -08:00
parent e32ae12cb9
commit 96ba26feba

View file

@ -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 {