From ab5ed25a9eafd9495aaa3da9f47595efaea3e865 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 19 Dec 2025 18:30:48 -0800 Subject: [PATCH] fix proficiency cell alignment in collection row --- src/lib/components/collection/CollectionCharacterRow.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/components/collection/CollectionCharacterRow.svelte b/src/lib/components/collection/CollectionCharacterRow.svelte index 96ba6267..27638b4a 100644 --- a/src/lib/components/collection/CollectionCharacterRow.svelte +++ b/src/lib/components/collection/CollectionCharacterRow.svelte @@ -75,7 +75,7 @@
{#each proficiencies as proficiency} - + {/each}
@@ -173,5 +173,7 @@ display: flex; gap: $unit-half; flex-shrink: 0; + min-width: 130px; + justify-content: flex-end; }