Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
feat(parts/Header/style): remove position:fixed from Header
Browse files Browse the repository at this point in the history
feat(parts/Header/style): remove position:fixed from Header, remove
useless comment
  • Loading branch information
Metnew committed Sep 17, 2017
1 parent c76addb commit f927162
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/common/components/parts/Header/style.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import styled from 'styled-components'
import {media} from 'styles/utils'
import {Button} from 'semantic-ui-react'

export const StyledHeader = styled.header`
background: ${props => props.theme.primaryColor};
border-bottom: 1px solid ${props => props.theme.primaryColorDark};
Expand All @@ -12,19 +11,15 @@ export const StyledHeader = styled.header`
justify-content: center;
flex-direction: column;
width: 100%;
position: fixed;
z-index: 444;
${media.md`
height: 65px;
`};
height: 65px;
${media.lg`
height: 72px;
`};
`
export const HeaderInner = styled.div`
display: flex;
padding: 0 15px;
${'XXX: maybe it\'s better to use `em`s?'}
`

export const PageTitle = styled.span`
Expand Down

0 comments on commit f927162

Please sign in to comment.