fix navbar

This commit is contained in:
karimalden 2024-08-07 16:47:03 +03:00
parent 1055417dc0
commit 0a31a3e5ad
3 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@ const NavBar = () => {
return ( return (
<div className="NavBar"> <div className="NavBar">
<Suspense fallback={<SpinContainer />}>
<span className="navbar_link" onClick={handelNavigate}> <span className="navbar_link" onClick={handelNavigate}>
<MdOutlineArrowForwardIos /> {PageTitle} <MdOutlineArrowForwardIos /> {PageTitle}
</span> </span>
<NavBarRightSide /> <NavBarRightSide />
<Suspense fallback={<SpinContainer />}>
<ChangePasswordModel /> <ChangePasswordModel />
</Suspense> </Suspense>
</div> </div>

View File

@ -15,7 +15,7 @@
margin-inline: auto; margin-inline: auto;
height: 60%; height: 60%;
content: ""; content: "";
background: url("../../../public/Layout/BackgroundHeader.webp"); background: url("/Layout/BackgroundHeader.webp");
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
z-index: 1; z-index: 1;

View File

@ -23,7 +23,7 @@
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-image: url("../../../public/Layout/BackgroundHeader.webp"); background-image: url("/Layout/BackgroundHeader.webp");
} }
} }