ente/src/components/Navbar.tsx

20 lines
392 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;
2021-02-15 12:42:03 +00:00
background-color: #111;
2020-09-09 21:09:51 +00:00
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-14 09:32:01 +00:00
z-index: 1;
2020-09-09 21:09:51 +00:00
`;
export default Navbar;