fix: Desktop sidebar clips logo after collapse-mode UX changes (#187) #191

Merged
egullickson merged 1 commits from issue-187-fix-sidebar-logo-clipping into main 2026-02-15 03:51:57 +00:00
Showing only changes of commit 19cd917c66 - Show all commits

View File

@@ -142,17 +142,19 @@ export const Layout: React.FC<LayoutProps> = ({ children, mobileMode = false })
backgroundColor: 'transparent',
}),
borderRadius: 0.5,
px: 1,
px: 0.5,
py: 0.5,
display: 'inline-flex',
alignItems: 'center',
overflow: 'hidden',
flex: 1,
minWidth: 0,
})}
>
<img
src="/images/logos/motovaultpro-title-slogan.png"
alt="MotoVaultPro"
style={{ height: 24, width: 'auto', maxWidth: 180 }}
style={{ height: 24, width: 'auto', maxWidth: '100%' }}
/>
</Box>
)}