From 4063871f3bf89e40e264141227a19493e0d5cfa8 Mon Sep 17 00:00:00 2001 From: Vladimir Metnev Date: Tue, 19 Sep 2017 17:46:04 +0300 Subject: [PATCH] fix(Footer/style): remove useless margin-top: 30px on lg screen fix(Footer/style): remove useless margin-top: 30px on lg screen --- src/common/components/parts/Footer/style.jsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/common/components/parts/Footer/style.jsx b/src/common/components/parts/Footer/style.jsx index 8c9c9f0c..3baf4bce 100644 --- a/src/common/components/parts/Footer/style.jsx +++ b/src/common/components/parts/Footer/style.jsx @@ -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;`