25 lines
441 B
TypeScript
25 lines
441 B
TypeScript
|
|
||
|
import styled from "styled-components";
|
||
|
|
||
|
export const Wrapper = styled("div")`
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
align-items:center;
|
||
|
display:flex;
|
||
|
justify-content: space-between;
|
||
|
background-color: red;
|
||
|
height: 3em;
|
||
|
`;
|
||
|
|
||
|
export const NavItemBox = styled("div")`
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
width: calc(33.3% - 5px);
|
||
|
|
||
|
`
|
||
|
|
||
|
export const NavItem = styled("button")`
|
||
|
|
||
|
`
|