l-min-components 1.0.168 → 1.0.171

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.168",
3
+ "version": "1.0.171",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -370,6 +370,7 @@ export const Navbar2 = styled.nav`
370
370
  width: 100%;
371
371
  align-items: center;
372
372
  position: fixed;
373
+ z-index: 99;
373
374
  `;
374
375
 
375
376
  export const Nav2 = styled.ul`
@@ -22,7 +22,7 @@ const HeaderComponentTwo = (props) => {
22
22
 
23
23
  const navigate = useNavigate();
24
24
  const location = useLocation();
25
- console.log(location);
25
+ // console.log(location);
26
26
  useEffect(() => {
27
27
  setIsOpen(false);
28
28
  }, []);
@@ -60,7 +60,7 @@ const HeaderComponentTwo = (props) => {
60
60
  <ArrowDownIcon />
61
61
  </CountryFlagGroup2>
62
62
 
63
- {location.pathname.includes("sign-in") && (
63
+ {location.pathname.includes("sign-up") && (
64
64
  <ButtonComponent type="secondary" text="Log in" onClick={goToLogin} />
65
65
  )}
66
66
  </NavGroup2>