diff --git a/src/containers/navbar/App.jsx b/src/containers/navbar/App.jsx index 3ad0cd4..90b90b5 100644 --- a/src/containers/navbar/App.jsx +++ b/src/containers/navbar/App.jsx @@ -25,6 +25,17 @@ const Wrapper = styled.div` .nav-content { height: 35%; background-color: rgba(50, 13, 136); + ul { + margin-left: 0; // Remove margin-left in mobile view + } + } + } + + @media (min-width: 1001px) { + .nav-content { + ul { + margin-left: -40vh; // Set margin-left to -40vh in laptop view + } } } `; @@ -60,7 +71,7 @@ const NAVBAR = ({}) => { -
+