ente/src/components/Navbar.tsx
2021-06-05 02:15:57 +05:30

18 lines
344 B
TypeScript

import styled from 'styled-components';
const Navbar = styled.div`
font-size: 20px;
line-height: 2rem;
background-color: #111;
color: #fff;
min-height: 64px;
display: flex;
align-items: center;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
position: sticky;
top: 0;
z-index: 1;
`;
export default Navbar;