team logo compression, play around with style

This commit is contained in:
yohlo
2025-09-29 10:20:54 -05:00
parent 39053cadaa
commit 31e50af593
5 changed files with 41 additions and 8 deletions

View File

@@ -6,7 +6,10 @@ interface HeaderProps extends HeaderConfig {}
const Header = ({ collapsed, title, withBackButton }: HeaderProps) => {
return (
<AppShell.Header id='app-header' display={collapsed ? 'none' : 'block'}>
<AppShell.Header
id='app-header'
display={collapsed ? 'none' : 'block'}
>
{ withBackButton && <BackButton /> }
<Flex justify='center' align='center' h='100%' px='md'>
<Title order={2}>{title}</Title>