fix(ui): header alignment
This commit is contained in:
parent
d4916f7172
commit
efdaa42ab1
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue