[fix] felcloud logo skyline

This commit is contained in:
baha 2024-12-02 13:57:02 +00:00
parent df0631f791
commit 760d9e9f55

View File

@ -44,7 +44,12 @@ export default function HeaderContent(props) {
style={{ backgroundColor: '#411E49' }} style={{ backgroundColor: '#411E49' }}
> >
<Link to={homeUrl}> <Link to={homeUrl}>
<img src={logoSrc} alt="logo" className={styles['logo-image']} /> <img
src={logoSrc}
alt="logo"
className={styles['logo-image']}
style={{ height: '50px' }}
/>
</Link> </Link>
</div> </div>
); );
@ -52,8 +57,8 @@ export default function HeaderContent(props) {
return ( return (
<div className={styles.header}> <div className={styles.header}>
<GlobalNav navItems={navItems} />
{renderLogo()} {renderLogo()}
<GlobalNav navItems={navItems} />
{!isAdminPage && <ProjectDropdown />} {!isAdminPage && <ProjectDropdown />}
<RightContent {...props} /> <RightContent {...props} />
</div> </div>