landing done-ish.

This commit is contained in:
41666 2019-03-18 21:25:36 -05:00
parent 6413d7c642
commit 0cd8409199
9 changed files with 194 additions and 47 deletions

View file

@ -10,9 +10,13 @@ export type CommonProps = {
}
const Header = styled.div`
${({ noBackground }: any) => noBackground === false ? 'background-color: var(--c-dark);' : ''}
background-color: ${({ noBackground }: any) => noBackground === false ? 'var(--c-dark);' : 'var(--c-1);'}
position: relative;
transition: background-color 0.3s ease-in-out;
position: fixed;
top: 0;
left: 0;
right: 0;
`
const HeaderInner = styled.div`