diff --git a/components/core/Navbar/Navbar.module.css b/components/core/Navbar/Navbar.module.css index 5db900503..2b1ff03a6 100644 --- a/components/core/Navbar/Navbar.module.css +++ b/components/core/Navbar/Navbar.module.css @@ -1,4 +1,7 @@ .root { +} + +.container { @apply flex justify-between items-center flex-row px-6 h-20 relative; } diff --git a/components/core/Navbar/Navbar.tsx b/components/core/Navbar/Navbar.tsx index 71e28e3b7..1447a9f38 100644 --- a/components/core/Navbar/Navbar.tsx +++ b/components/core/Navbar/Navbar.tsx @@ -12,22 +12,26 @@ interface Props { const Navbar: FC = ({ className }) => { const rootClassName = cn(s.root, className) return ( - - - - - - -
- - -
- -
+
+ +
+ + + + + +
+ + +
+ +
+
+
) }