ente/src/components/Navbar.tsx
2020-09-13 03:23:41 +05:30

19 lines
379 B
TypeScript

import styled from 'styled-components';
const Navbar = styled.div`
padding: 8px 12px;
font-size: 20px;
line-height: 2rem;
background-color: #212121;
color: #fff;
min-height: 56px;
display: flex;
align-items: center;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
margin-bottom: 10px;
position: sticky;
top: 0;
`;
export default Navbar;