Increase sidebar logo container height to 52px

This commit is contained in:
poduck
2025-12-29 20:59:27 -05:00
parent 9b251c696e
commit aca4a7426e

View File

@@ -42,7 +42,7 @@ export const AppSidebarHeader = () => {
<div <div
className={cn( className={cn(
buttonVariants({ variant: 'ghost', size: 'icon' }), buttonVariants({ variant: 'ghost', size: 'icon' }),
'w-full flex items-center justify-center h-9', 'w-full flex items-center justify-center h-[52px]',
)} )}
> >
<img <img
@@ -54,7 +54,7 @@ export const AppSidebarHeader = () => {
alt={t('home')} alt={t('home')}
className={cn( className={cn(
'object-contain', 'object-contain',
state === 'collapsed' ? 'h-5 w-5' : 'w-full h-9', state === 'collapsed' ? 'h-5 w-5' : 'w-full h-[52px]',
)} )}
draggable={false} draggable={false}
/> />