fix(ui): header alignment

This commit is contained in:
Shekar Siri 2024-07-02 13:26:36 +02:00
parent d4916f7172
commit efdaa42ab1

View file

@ -13,12 +13,12 @@ interface Props {
function Logo(props: Props) {
return (
<NavLink to={withSiteId(SESSIONS_PATH, props.siteId)}>
<Button type='link' className='p-0'>
<AnimatedSVG name={ICONS.LOGO_FULL} size='120' />
<NavLink to={withSiteId(SESSIONS_PATH, props.siteId)} className="flex items-center">
<Button type="link" className="p-0">
<AnimatedSVG name={ICONS.LOGO_FULL} size="120" />
</Button>
</NavLink>
);
}
export default Logo;
export default Logo;