From 223495a04af5ade61a5b83e75a428b03bfc55369 Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Wed, 27 May 2026 02:26:49 -0400 Subject: [PATCH] zenno: fix margins on skill tips with multiple activations --- zenno/src/lib/Skill.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zenno/src/lib/Skill.svelte b/zenno/src/lib/Skill.svelte index ff991b3..402d0ca 100644 --- a/zenno/src/lib/Skill.svelte +++ b/zenno/src/lib/Skill.svelte @@ -36,7 +36,7 @@ } return l[0]; }); - const activationClass = $derived(s.activations.length === 1 ? null : 'm2 border rounded-md'); + const activationClass = $derived(s.activations.length === 1 ? null : 'my-2 border rounded-md'); const spanClass = $derived(mention ? 'italic' : 'font-bold'); @@ -51,7 +51,7 @@ {/snippet} {#snippet abilities(abils: Ability[])} - {#each abils as a (a.type)} + {#each abils as a, i (i)}
{ABILITY_TYPE_FORMAT[a.type](a.value)} {ABILITY_SCALE_NAME[a.value_usage]} @@ -62,7 +62,7 @@ {/each} {/snippet} -
+