From 973d188a2668671302f456f8d23af3fcbe88f71c Mon Sep 17 00:00:00 2001 From: vikingowl Date: Wed, 12 Nov 2025 23:41:53 +0100 Subject: [PATCH] fix: Increase rank icon sizes further for better readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - sm: 10x10 → 14x14 (56px, used in scoreboard) - md: 12x12 → 16x16 (64px) - lg: 16x16 → 20x20 (80px) Icons now prominently visible in Rating column. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/lib/components/ui/RankIcon.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/components/ui/RankIcon.svelte b/src/lib/components/ui/RankIcon.svelte index 8fa10eb..11cd576 100644 --- a/src/lib/components/ui/RankIcon.svelte +++ b/src/lib/components/ui/RankIcon.svelte @@ -37,9 +37,9 @@ }; const sizeClasses = { - sm: 'h-10 w-10', - md: 'h-12 w-12', - lg: 'h-16 w-16' + sm: 'h-14 w-14', + md: 'h-16 w-16', + lg: 'h-20 w-20' }; const labelSizeClasses = {