Fix logo proportions: use w-full h-auto instead of fixed height
h-28 w-auto was locking height which can distort aspect ratio in the narrow sidebar. w-full h-auto scales proportionally from the container width with object-contain as a safety net. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
dfb758fa61
commit
2553d1f952
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ export const Sidebar: React.FC<SidebarProps> = ({ activeItem, onNavigate, userNa
|
|||
<aside className="w-72 flex-shrink-0 bg-oliver-black text-slate-200 flex flex-col font-sans">
|
||||
{/* Brand Header */}
|
||||
<div className="py-6 px-8 border-b border-white/10 flex flex-col items-center text-center">
|
||||
<img src="/BAR-ModComms-logo-v4.png" alt="Mod Comms AI" className="h-28 w-auto" />
|
||||
<img src="/BAR-ModComms-logo-v4.png" alt="Mod Comms AI" className="w-full h-auto object-contain" />
|
||||
</div>
|
||||
|
||||
{/* Navigation */}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue