This commit is contained in:
Jori Lallo
2017-06-08 23:32:08 -07:00
parent 43a312825b
commit 42e54a3a54
11 changed files with 49 additions and 637 deletions

View File

@ -72,9 +72,6 @@ type Props = {
<Header>
<Flex align="center">
<LogoLink to="/">Atlas</LogoLink>
<Title>
{this.props.title}
</Title>
</Flex>
<Flex>
<Flex>
@ -120,21 +117,23 @@ type Props = {
}
const Container = styled(Flex)`
position: relative;
width: 100%;
height: 100%;
`;
const Header = styled(Flex)`
display: flex;
position: absolute;
top: 0;
left: 0;
right: 0;
justify-content: space-between;
align-items: center;
padding: 0 20px;
z-index: 1;
background: #fff;
height: ${headerHeight};
border-bottom: 1px solid #eee;
font-size: 14px;
line-height: 1;
@ -148,18 +147,6 @@ const LogoLink = styled(Link)`
font-size: 16px;
`;
const Title = styled.span`
color: #ccc;
a {
color: #ccc;
}
a:hover {
color: ${textColor};
}
`;
const Search = styled(Flex)`
margin: 0 5px;
padding: 15px 5px 0 5px;