Permalink
Browse files

examples are breaking the build

  • Loading branch information...
1 parent 7c0c955 commit 6f588e893751ed7ce4003a8aa7df8976e2ec64f5 @jongold jongold committed Apr 6, 2017
Showing with 3 additions and 3 deletions.
  1. +1 −1 .eslintignore
  2. +2 −2 examples/colors/src/main.js
View
@@ -3,4 +3,4 @@
**/node_modules/**
**/flow-typed/**
**/_book/**
-**/examples/**/webpack.config.js
+**/examples/**
@@ -25,8 +25,8 @@ const Document = ({ colors, steps }) => {
style={{
backgroundColor: val,
margin: 2,
- height: 96 - 2 * i,
- width: 96 - 2 * i,
+ height: (96 - 2) * i,
+ width: (96 - 2 *) i,
borderRadius: 2 * i,
}}
/>

0 comments on commit 6f588e8

Please sign in to comment.