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

Commit

Permalink
fix(Footer/style): remove useless margin-top: 30px on lg screen
Browse files Browse the repository at this point in the history
fix(Footer/style): remove useless margin-top: 30px on lg screen
  • Loading branch information
Metnew committed Sep 19, 2017
1 parent 6dd2bc9 commit 4063871
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/common/components/parts/Footer/style.jsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
import styled from 'styled-components'
import {media} from 'styles/utils'

export const StyledFooter = styled.footer`
width: 100%;
display: flex;
align-items: center;
background-color: ${props => props.theme.primaryColorLight};
color: ${props => props.theme.primaryTextColor};
height: 90px;
box-shadow: inset 0 0 0 0 ${props => props.theme.primaryColorDark},
0 2px 1px 0 ${props => props.theme.primaryColorDark};
${media.lg`
margin-top: 30px;
`};
width: 100%;
display: flex;
align-items: center;
background-color: ${props => props.theme.primaryColorLight};
color: ${props => props.theme.primaryTextColor};
height: 90px;
box-shadow: inset 0 0 0 0 ${props => props.theme.primaryColorDark},
0 2px 1px 0 ${props => props.theme.primaryColorDark};
`

export const StyledFooterInner = styled.div`padding: 15px 1rem;`

0 comments on commit 4063871

Please sign in to comment.