use background color in html/body

This commit is contained in:
Sérgio Ramos 2017-02-24 13:54:12 +00:00
parent f2b71e1105
commit 710b6f983e
2 changed files with 3 additions and 2 deletions

View File

@ -1,9 +1,8 @@
import styled from 'styled-components';
import { colors, breakpoints } from '@ui/shared/constants';
import { breakpoints } from '@ui/shared/constants';
// Main Contonent Wrapper Styles
export default styled.article`
background-color: ${colors.base.grey};
padding: 2rem;
${breakpoints.large`

View File

@ -1,4 +1,5 @@
import { css } from 'styled-components';
import { colors } from '../../shared/constants';
import eotRegular from '../../assets/fonts/librefranklin-regular-webfont.eot';
import woffRegular from '../../assets/fonts/librefranklin-regular-webfont.woff';
@ -79,5 +80,6 @@ export default css`
html, body {
font-size: 16px;
margin: 0;
background: ${colors.base.background};
}
`;