🐛 Disabling logo link

This commit is contained in:
Maxime Lalo 2023-09-28 17:29:10 +02:00
parent 406a04bcfe
commit 892c019836
2 changed files with 5 additions and 2 deletions

View File

@ -21,6 +21,9 @@
}
.logo-container {
> a {
cursor: default !important;
}
.logo {
width: 174px;
height: 39px;
@ -57,4 +60,4 @@
}
}
}
}
}

View File

@ -61,7 +61,7 @@ class HeaderClass extends React.Component<IPropsClass, IState> {
<link rel="shortcut icon" href={"/favicon.svg"} />
</Head>
<div className={classes["logo-container"]}>
<Link href={Module.getInstance().get().modules.pages.Home.props.path}>
<Link href={"#"}>
<Image src={LogoIcon} alt="logo" className={classes["logo"]} />
</Link>
</div>