fix unlimited raids to show 8 character slots
This commit is contained in:
parent
e32ae12cb9
commit
96ba26feba
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@
|
||||||
}: Props = $props()
|
}: Props = $props()
|
||||||
|
|
||||||
// Dynamic slot count based on unlimited flag
|
// 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'
|
import CharacterUnit from '$lib/components/units/CharacterUnit.svelte'
|
||||||
|
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
gap: $unit-3x;
|
gap: $unit-3x;
|
||||||
|
|
||||||
&.unlimited {
|
&.unlimited {
|
||||||
grid-template-columns: repeat(7, minmax(0, 1fr));
|
grid-template-columns: repeat(8, minmax(0, 1fr));
|
||||||
}
|
}
|
||||||
|
|
||||||
& > li {
|
& > li {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue