ente/src/components/Navbar.tsx

19 lines
379 B
TypeScript
Raw Normal View History

2020-09-09 21:09:51 +00:00
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;
2020-09-09 21:09:51 +00:00
`;
export default Navbar;