mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
More UI Changes
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
.root {
|
||||
@apply flex justify-between items-center px-4 py-5;
|
||||
@apply px-4 py-5;
|
||||
}
|
||||
|
||||
.container {
|
||||
@apply flex justify-between items-center flex-row;
|
||||
}
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import cn from "classnames";
|
||||
import { FunctionComponent } from "react";
|
||||
import React, { FunctionComponent } from "react";
|
||||
import s from "./Navbar.module.css";
|
||||
import { Logo } from "ui";
|
||||
import { Logo, Container } from "ui";
|
||||
interface Props {
|
||||
className?: string;
|
||||
children?: any;
|
||||
@@ -11,10 +11,12 @@ const Navbar: FunctionComponent<Props> = ({ className }) => {
|
||||
const rootClassName = cn(s.root, className);
|
||||
return (
|
||||
<div className={rootClassName}>
|
||||
<Logo />
|
||||
<div>SEARCH BAR</div>
|
||||
<div>Menu list bar</div>
|
||||
<div>Menu Icon bar</div>
|
||||
<Container className={s.container}>
|
||||
<Logo />
|
||||
<div>SEARCH BAR</div>
|
||||
<div>Menu list bar</div>
|
||||
<div>Menu Icon bar</div>
|
||||
</Container>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user