2019-11-05 05:09:50 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
|
|
|
|
|
export default styled.header`
|
|
|
|
|
display: flex;
|
2019-12-23 12:16:33 +00:00
|
|
|
width: 100%;
|
2019-11-05 05:09:50 +00:00
|
|
|
justify-content: space-around;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: ${props => props.theme.headerHeight};
|
|
|
|
|
padding: 0px 30px;
|
|
|
|
|
box-shadow: 0px 0px 3px #ccc;
|
|
|
|
|
background: #fff;
|
|
|
|
|
font-size: ${props => props.theme.fontSizes[1]}px;
|
|
|
|
|
`;
|