turning off baseline grid overlay and remove "data-" attr

This commit is contained in:
Alex Windett 2017-02-01 15:13:17 +00:00
parent cf723f5010
commit 6bf348659b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
"lib": "src"
},
"scripts": {
"start": "webpack-dev-server --define process.env.BASELINE_GRID=true --open --config webpack/index.js ",
"start": "webpack-dev-server --define process.env.BASELINE_GRID=false --open --config webpack/index.js ",
"production": "node server",
"lint": "make lint",
"test": "make test",

View File

@ -36,7 +36,7 @@ const Baseline = ({
}) => {
return (
<StyledBaselineBackground data-baseline>
<StyledBaselineBackground>
{children}
</StyledBaselineBackground>
);