fix: avatar and server icon font size/weight to match prototype

Avatar: font-semibold (600) → font-bold (700), replaced Tailwind text
classes with exact pixel sizes matching prototype (24px→10px, 32px→12px,
40px→15px, 56px+→18px). Server sidebar: font-medium → font-bold.
This commit is contained in:
Jannis Braun
2026-03-02 14:08:34 +01:00
parent 88b29200d5
commit 31562c2b29
2 changed files with 5 additions and 4 deletions
@@ -99,7 +99,7 @@ function SidebarItem({ id, name, icon, active, onClick, type = 'server', actionT
className="w-full h-full object-cover"
/>
) : (
<span className="text-[15px] font-medium">{firstLetter}</span>
<span className="text-[15px] font-bold">{firstLetter}</span>
)}
</button>
</div>